Help me with Linq query please
Posted
by plotnick
on Stack Overflow
See other posts from Stack Overflow
or by plotnick
Published on 2010-04-15T15:42:11Z
Indexed on
2010/04/15
15:43 UTC
Read the original article
Hit count: 277
I'm trying to get all the assets where Class property equals to one of the values in selectedIClassesList;
Something like this:
from x in Assets where selectedIClassesList.Contains(x.Class) select x
© Stack Overflow or respective owner