Dear Otis,
I got the point about the count, but for example if i have a function like the following
IQueryable<Entity> FindALl( Expression<Func<Entity, bool>> exp).
and i need to pass that expression to some sort of LLBL functions that takes IPredicate can i do that.
and another something if I need to delete some rows from Database based on that expression as for example
EntityCollection coll = new EntityCollection();
coll.DeleteMulti(takesIPredicate) can i give it the lambda expression.
Thanks