diffrence between running query with Func and Expression Func [duplicate]
问题 This question already has answers here : Why would you use Expression<Func<T>> rather than Func<T>? (10 answers) What is the difference between IQueryable<T> and IEnumerable<T>? (12 answers) Closed 2 years ago . I have been searching on internet to find out the difference between Func and Expression Func, somehow i got the point,the first one is just a function gets the data and then apply the function in memory but the second,translate it to sql and run it in the database,after i run this