|
Home
-
|
I recently decided to upgrade a client's application from Entity Framework version 1 to version 4 (MS skipped a few numbers to make the EF version match the .NET version). The main reason for the upgrade was the client requested a feature to clone...
|
-
|
I recently discovered and interesting tidbit about stored procedures and their counterparts, function imports, in the entity framework (EF). In the past I have used stored procedures in the EF when I need to do complex operations when adding new database...
|
-
|
Recently I was looking for a way to build the following SQL query using the entity framework 1: SELECT * FROM tbl_Registrations WHERE [ID] IN (1, 2, 3, 4, 5) But, turns out, that is not very easy. I thought of three different approaches. To begin, I have...
|
-
|
My current project has this concept of Activities. Activities are defined as anything we want to track for a particular Company or Contact in the database. A typical Activity may be ID = 21 Description = Contacted office IsCompanyOnly = false Now, as...
|
-
|
I have been working on a project using the Entity Framework. One of the many cool features of the framework is it generates entity classes as partial classes so you, or in this case I, can extend an entity to include computed properties or methods. In...
|
|
|
|