-
Re: LINQPad AI Assistant Preview - feedback needed
@JFalcon - sure, I'll add a custom endpoint option to the next build. @stephensmitchell - for now, I can add an option to override the model. The Davinci models won't work, however, because they don'… (View Post) -
Re: LINQPad AI Assistant Preview - feedback needed
Thanks - I'll get a fix out today. Will look into adding a "check all" option soon. (View Post) -
Re: Unable to select .net core 6 - linqpad 6.15.12
LINQPad 6 supports .NET 3 to .NET 5. For .NET 6 and .NET 7, you need to run LINQPad 7 (View Post) -
Re: Postgresql date field is translated as C# DateTime, not DateOnly
In the connection settings. Change from version 5 to version 7. (View Post) -
Re: Is it possible to set background color of a row when you dump results to a grid?
You can do this more easily with Util.Highlight: from i in Enumerable.Range (0, 10)select new { i, formatted = Util.Highlight (i, i > 5 ? "pink" : "lightgreen") } Or to highlig… (View Post)