We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am looking for solution described in more detail here here.
What I want to acheive is to generate query like:
SELECT * FROM Entity WHERE ( SomeId_1 = SomeId AND DateAt_1 = DateAt) OR.. OR (SomeId_N = SomeId AND DateAt_N = DateAt)
using LINQ extension methods over IQuerable<Entity> interface, for Entity having collumns (among others) SomeId, DateAt.
IQuerable<Entity>
Entity
SomeId
DateAt
Lets assume I have:
class SomeIdAtPair { public int SomeId { get;set; } public DateTime DateAt { get;set; } }
and collection of parameters:
var pairs = new List<SomeIdAtPair> { new SomeIdAtPair { ... }, ... };
Is it possible or will it be possible in EF Core 3.1+?
The text was updated successfully, but these errors were encountered:
Duplicate of #19070
Sorry, something went wrong.
No branches or pull requests
I am looking for solution described in more detail here here.
What I want to acheive is to generate query like:
using LINQ extension methods over
IQuerable<Entity>
interface, forEntity
having collumns (among others)SomeId
,DateAt
.Lets assume I have:
and collection of parameters:
Is it possible or will it be possible in EF Core 3.1+?
The text was updated successfully, but these errors were encountered: