I want to add some conditions(where) to linq in ef codefirst.
using (var context = new Context())
{
var u= context.Users;
**u.where(my where condition)**
}
Is there some way to let me di into all selects , eg:BeforeSelected?
thanks