Let\'s say i have a table named User. When I use the Entity Framework to get the records i do like this:
var db = new Context(); var users = db.Users;
The Sql submitted to your database will contain your where clause. You can use SQL Server Profiler to watch as queries are submitted to your DB.