GLuca74
GLuca74
Hello, having this model: ``` public class Continent { public Guid ContinentID { get; set; } public string ContinentName { get; set; } public virtual ICollection Nations { get; set;...
I am migrating a Test Project From EF Core 7.0.4 to 8.0.1 I have some tests that using 7.0.4 work, with 8.0.1 fail the simplest query that reproduce is this...
I developed some extensions for my custom provider for EFCore and I am trying to port this extensions when the user is using another provider to keep the same user...
Hello, I am trying to build an OData server using Microsoft.AspnetCore.OData. I have a problem when I try to send a Batch request with a multipart request. The problem seems...