However, can you please advise the correct usage of EfCodeFist to perform a "Where" query so we can pass in a match (lambda) criteria to return a collection of matching records?
Example:
var quotes = db.Quotes.Where(x => x.cust_num == "DNT001");
If we need this kind of query, are we supposed to drop back to native EF contexts and call per the above? Or is there a certain way we can make this call with your EfCodeFirst?