You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if this is by design, but it is clearly different when compared to relational database query.
Given the following model:
public class Order
{
public Guid OrderId { get; set; }
public Address Address { get; set; }
public bool? Checked { get; set; }
public string DistributionPointId { get; set; }
}
This issue is lacking enough information for us to be able to fully understand what is happening. Please attach a small, runnable project or post a small, runnable code listing that reproduces what you are seeing so that we can investigate.
We recommend against using the in-memory provider for testing--see Testing EF Core Applications. While we have no plans to remove the in-memory provider, we will not be adding any new features to this provider because we believe valuable development time is better spent in other areas. When feasible, we plan to still fix regressions in existing behavior.
I'm not sure if this is by design, but it is clearly different when compared to relational database query.
Given the following model:
and incoming request:
When we execute the following query
We get it translated to
It seems that DistributionPoint is left out of the equation, if the scalar value that we use to compare with, isn't provided.
Is that by design?
EF Core version:
Database provider: Microsoft.EntityFrameworkCore.Cosmos, 7.0.3
Target framework: .NET 7.0
Operating system: Windows 11
Visual Studio 2022 17.4.3
The text was updated successfully, but these errors were encountered: