Maurycy Markowski

Results 155 comments of Maurycy Markowski

NTWIT works fine for the case where you also project parent entity (just like regular Tracking), after fix from https://github.com/dotnet/efcore/pull/33101 is applied. Cases where we don't project the parent are...

This issue has been approved for patch and will be available in 8.0.4, closing

@OrgesKreka can you file a new issue for this? Ideally, please include the JSON data that has been used to reproduce this. This generally happens when the JSON is shaped...

@lenardchristopher apologies for late reply. We were debating whether to port the fix but ultimately decided against it. Reason is that the fix is quite complex, with a significant risk...

many-to-many loader produces the following query: ```cs DbSet() .Where(e => EF.Property(e, "ID") == __p_0) .SelectMany(e => e.Airlines) .NotQuiteInclude(e => EF.Property(e, "Airports") .Where(e => EF.Property(e, "ID") == __p_0)) .AsTracking() ``` which...

@nettashamir-allocate you can use regular Include query, like so: ```cs var airport = context.Airports.First(); _ = context.Airports.Where(a => a.ID == airport.ID).Include(x => x.Airlines).ToList(); ``` which produces sql like this: ```sql...

problem is in RelationalPropertyExtensions.IsColumnNullable - there we try to compute nullability of a column that the given property is mapped to. For inheritance scenario we look at declaring type and...