Hi,
In my last project i decided to use Entity Framework and it was all going well until i try to get datas with "where in", i got an error.
After a tiny search i ve come up with this post and that post.
This is what i am trying to do
var all = fooelements
.Where(l=>controlsToGet
.Contains(l.Control.Name));
Is there any to handle it with lambda expressions or linq with the Entity Framework ?
Thank you