|
Net-Framework/ASP_dot_Net-Core/Data-Model/Linq
LINQ: Creating Multiple OR Subqueries in a WHERE Condition
|
07.10.2021 943
|
The following
LINQ statement filters data in a Linq query with sub-sets
The filter is
referred to subqueries with ANY(value in Subdata)
Technically, this
solution also corresponds to a ForEach query, in which an OR filter is set up
in the WHERE (Filter=A OR Fil
|