Arthur Vickers
Arthur Vickers
This is a grouping of related issues. Feel free to vote (👍) for this issue to indicate that this is an area that you think we should spend time on,...
Let us know which projects, people, demos, or other ideas you have for the show! This is the _community_ standup, so we want to feature you, your ideas, and your...
Ideas for better catching behavior changes in the product code. Specifically: - Detect when a negative case stops failing - Detect when a negative case starts failing in a different...
Cosmos has ~1000 tests disabled referencing #14935 (now referencing this issue). Filing this issue to handle these and either skip or check an appropriate exception message is being thrown.
That is, more than just passing an expression for the method call to the ValueConverter constructor.
Moved from https://github.com/aspnet/EntityFrameworkCore/issues/12751 posted by @erictrigo Check out: https://docs.microsoft.com/en-us/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-2.1 Says signature for SaveChangesAsync is `public virtual System.Threading.Tasks.Task SaveChangesAsync (System.Threading.CancellationToken cancellationToken = null);` If you try overriding SaveChangesAsync using the above...
Originally implemented as part of #33678 and found while writing What's New. Currently, we insert a cast: ```C# context.Set().Where(e => timeOnly > TimeOnly.FromTimeSpan(e.TimeSpan)) ``` ```sql SELECT [a].[Id], [a].[TimeSpan] FROM [Animal]...
Block unused indexes with the Cosmos provider. Fixes #34023. Also stop adding indexes for foreign keys by convention for non-relational providers. Fixes #34053.
The convention is debatable even on a relational database, where the use of FKs in joins make this often a useful index to have. Doing it speculatively for non-relational databases...