Does Entity Framework provide a way to use in as a where condition?
I'd like to use LINQ if possible to generate a query equivalent to:
select * from dbo.Strains where Name in ('A', 'B', 'C', … )
Does Entity Framework provide a way to use in as a where condition?
I'd like to use LINQ if possible to generate a query equivalent to:
select * from dbo.Strains where Name in ('A', 'B', 'C', … )