Arthur Vickers

Results 1127 comments of Arthur Vickers

Closing as there are significant changes needed and the code is diverging.

## November 10, 2022 Expand to see status from this week... ## Highlights ### .NET Conf 2022 sessions #### Leveling up data: Upgrade from EF6 to EF7 and blast off!...

## November 24, 2022 Expand to see status from this week... ## Highlights ### .NET 7 and EF7 - More than 300,000 NuGet Downloads of EF Core 7 in the...

@brettzook See https://learn.microsoft.com/en-us/ef/core/what-is-new/ef-core-8.0/whatsnew#sentinel-values-and-database-defaults

Note from triage: we discussed this again, but we still believe that the error is useful for preventing people falling into a pit of failure with tracking queries. We are...

Note from triage: consider using the size facet to determine whether to use OpenJson or not. If max, use it, if not, don't.

@fingers10 This should work: ```C# .Where(x => ((string)(object)x.Position).Contains("acc")) ``` EF Core then interprets this as a cast to string and generates: ```sql SELECT [d].[Id], [d].[FirstName], [d].[LastName], [d].[Position] FROM [DemoEntity] AS...