Aaron Sherber

Results 118 comments of Aaron Sherber

Yes, I think the most important thing is to get a handle on all the breaking changes and make sure those go into 7.0. After that, and hopefully with a...

How do you think they should be used? Also, keep in mind that they’re only available in .NET Core 3.

C#8 is only supported on .NET Core 3, not on .NET Core 2 or any Framework versions. https://devblogs.microsoft.com/dotnet/building-c-8-0/ https://devblogs.microsoft.com/dotnet/announcing-net-standard-2-1/ https://docs.microsoft.com/en-us/dotnet/standard/net-standard

I'm sorry, but this is not correct. You can only use C# 8 language features in a project that targets .NET Core or .NET Standard 2.1. If PP continues to...

@khellang You're right -- I didn't think of manually setting the language version when VS wouldn't let me do it in the UI. And most of the info about C#8...

My concern with exposing this implementation detail would be that it doesn't always mean what the user might think it does. For example, if you do `var db = new...

@LeifUK I agree with @iadaz, but can you tell us what error you're getting? Also, you can wrap your `Insert()` statement in a `try..catch` block in order to trap the...

@LC95 What kind of database (SqlServer, MySql, etc.)? What does your call to `Page()` look like?

I don't fully understand what you're looking for. Can you give an example of the kind of code you'd like to be able to use?

I can see a case to be made for looking at `ParameterName` when `EnableNamedParams=true`. At first glance, I think this will involve changes to `ParametersHelper.ProcessQueryParams()` as well as `Database.AddParam()`. If...