Similar articles
DotNetShoutout - Latest published stories
.First() throws Error in LINQ or Entity Framework Queries
I use .First() method in some of the Entity Framework LINQ queries to return only one record . This works perfectly similar to the select Top 1 statemnent in SQL . Eg :var data = (from m in Employees ...
ASP.NET Weblogs
Entity Framework Batch Update and Future Queries
Entity Framework Extended Library A library the extends the functionality of Entity Framework. Features Batch Update and Delete Future Queries Audit Log Project Package and Source Nu...
DotNetShoutout - Latest published stories
Writing Entity Framework queries using LINQPad
I describe using the LINQPad tool to write LINQ entity framework queries. The ORM may abstract you from writing SQL but the way your queries are executed by the SQL engine is as important as ever!
ASP.NET Weblogs
Monitor Your EF4 Queries with Entity Framework Profiler
Entity Framework is wonderful for non-SQL developers like me. I can implement data access code in VB-like object syntax or with drag’n’drop datasource controls and then let EF turn it into T-SQL. For ...