Looking at generated queries for LINQ 2 SQL and EF with Visual Studio 2010 Intelli-Trace 14 November 2010 Peter-Himschoot VS2010, .NET Development When you use LINQ to SQL or Entity Framework you might wonder from time to time what the actual SQL is that was generated by the runtime. Both frameworks have their specific way to allow you to look at this, but require some extra code. Of course you shouldn’t forget to remove this code. Visual Stu... [More]
WCF and large messages 23 January 2010 Peter-Himschoot WCF, VS2010, .NET Development, Entity Framework This week I’ve been training a couple of people on how to use .NET, WCF4, Entity Framework 4 and other technologies to build an Enterprise Application. One of the things we did was return all rows from a table, and this table contains about 2500 rows. We’re using the Entity Framework 4 self-tracking... [More]
Building an Enterprise Application with Entity Framework 4 20 January 2010 Peter-Himschoot .NET Development, VS2010, Entity Framework Entity Framework 3 was a bit of a disappointment when it came to supporting enterprise applications. For me the major reason was the fact that entities used by EF required deriving from a class which is part of EF, thus coding the EF requirement into your Business Logic Layer (BLL) and presentation ... [More]