-
I have following interfaces (located in NuGet package)
```csharp
public interface IUnitOfWork
{
Task SaveAsync(CancellationToken cancellationToken = default (CancellationToken));
}
publi…
-
## File a bug
Remember:
It appears that Lazy Loading should now be working, but for the life of me I cannot seem to get it to to work. I have a very simple example (2 Entities) that demonstrates …
-
`Articles` and `ArticleTags` both have a property `ReplicationOrder`. I need all Articles with the MIN `ReplicationOrder` of the Article and all its ArticleTags and I need to further select the Tags f…
majbo updated
2 years ago
-
### Description
Since upgrading to 22.3.4 we're unable to connect to our Trino clusters.
We usually connect with the external authentication enabled in the driver.
Rolling back to 22.3.3 seems to …
-
## File a bug
Using Microsoft.EntityFrameworkCore.Sqlite.NetTopologySuite provider, "dotnet ef database update" command throws exception with message "SQLite Error 1: 'table ef_temp_SomeBuildings h…
-
Hi,
I'm forced to use MacOs at work, and tried to use install the plugin today, but unfortunately the plugin doesn't seem to be able to find dotnet.
In the Event log, I can see the following:
…
-
### Description
I'm Smelting... Smelting!
https://www.wowhead.com/quest=13138/im-smelting-smelting
https://tcubuntu.northeurope.cloudapp.azure.com/aowow/?quest=13138
Quest doesn't work. Unable t…
-
I am building an application that has a history table keeping track of changes.
Using .NET 5.0.101 with EF Core 5.0.1 and Npsql 5.0.1.
My code is as follows:
```
public abstract class BaseEntity…
-
EF tries to update a new instance of a navigation property instead of inserting it. This issue occurs if the navigation property is added to the collection of the parent entity only, i.e. the navigati…
-
The SQL statement is missing `JOINs` when projecting a navi after the query is pushed down into subquery.
## Repro
In the repro I'm using the method `Distinct()` to trigger `PushdownIntoSubquery…