Arthur Vickers

Results 139 issues of 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,...

type-enhancement
area-save-changes
composite-issue

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...

type-unknown

type-enhancement
area-test
punted-for-3.1
area-query

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...

type-enhancement
area-test

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.

type-enhancement
area-test
area-query
area-cosmos

That is, more than just passing an expression for the method call to the ValueConverter constructor.

type-enhancement
area-model-building
area-change-tracking

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]...

type-enhancement
area-query
area-sqlserver

Block unused indexes with the Cosmos provider. Fixes #34023. Also stop adding indexes for foreign keys by convention for non-relational providers. Fixes #34053.

providers-beware

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...

type-enhancement
closed-fixed
area-cosmos
area-model-building