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 looked around for another issue on this..was pretty shocked i couldn't find it, maybe my lingo/terms are all wrong. #14762 seemed like a subcase of what i was execpting to find. #20441 is another special case...well it's Any() and i'm after Any(boolCondition)
given
public class OrderReleaseEvent
{
public string Href { get; set; }
}
public class Order
{
public string Number { get; set; }
public ICollection<OrderReleaseEvent> OrderReleaseEvents { get; set; } = new List<OrderReleaseEvent>();
}
var results = awai db.Orders
.Where(
o => o.OrderReleaseEvents.Any(
e => e.Href == "https://example.com/events/b8f39c16-23da-4cf7-a71d-de5c859d0484"
)
)
.ToListAsync();
i looked around for another issue on this..was pretty shocked i couldn't find it, maybe my lingo/terms are all wrong. #14762 seemed like a subcase of what i was execpting to find. #20441 is another special case...well it's Any() and i'm after Any(boolCondition)
given
should match a document like this
The provider should translate this query into
The text was updated successfully, but these errors were encountered: