Arthur Vickers

Results 1127 comments of Arthur Vickers

@ErikEJ Yeah, I saw that in one of the repros--doesn't help in 9.

Notes from triage: putting this on the backlog to consider supporting indexes and table splitting together. The implementation will likely require an internal store-side model. @lincolnzocateli The workaround is to...

@kl1mm This issue is in the Backlog milestone. This means that it is not planned for the next release (EF Core 6.0). We will [re-assess the backlog](https://docs.microsoft.com/ef/core/what-is-new/release-planning) following the this...

Still repros for SQL Server on EF9. Doesn't repro if the second projection to the `FinalResult` type is removed. Code ```C# using (var context = new ReproContext()) { await context.Database.EnsureDeletedAsync();...

Note from triage: we are very unlikely to implement this. See https://github.com/dotnet/efcore/issues/18457#issuecomment-615411282

@felinepc I think this makes a lot of sense. It's related to #1985. Changing this now would be a breaking change, but we might be able to do something in...

Note from triage: Added a link to this issue in #1985. Backlogging this for now, but we will consider this behavior as part of better aggregate support in a later...

Notes for team: the issue here is that the auto-Include creates a cycle which is not detected or resolved. Executing the query with the Includes added manually: ```C# var area...

@bricelam This repros for me on 3.0 bits. The issue happens when attempting to change the length of a string primary key column that is referenced by an FK. More...

@cincuranet Is this a confirmed bug? Do you know if it is a regression in EF9?