EF4 & CodeFirst
55
“Interesting post and authors for me” RSS
Curated by Tony Pierascenzi
715 Views
Scoop.it Score 55
Visitors Loading...
Created Jan 2
Updated Feb 22
Posts 90
Followers 1
Reactions 32
Tags
Suggest
Follow
reddevnews.com - January 23, 7:50 AM

Entity Framework 4.3 Gets Final Tune-Up -- Enum Support Promised in 5.0 - Redmond Developer News (blog)

Entity Framework 4.3 Gets Final Tune-Up -- Enum Support Promised in 5.0Redmond Developer News (blog)It said the team is "still on-track to get a full supported, go-live, release of EF 4.3 published this quarter (first quarter of 2012)." EF 4.3 Beta...
Share
1
Scooped on:
EF4 & CodeFirst
www.devart.com - February 22, 7:27 AM

Blog Archive Entity Framework Code-First Migrations ... - Devart

Entity Framework Code-First Migrations continues the development of Entity Framework Code-First functionality from Entity Framework 4.1 and Entity Framework 4.2, extending the functionality of dynamic database creating ...
Share
1
www.codecapers.com - February 20, 6:28 PM

Code Capers | Using Self Referencing Tables With Entity Framework

To get started we first need to create a simple C# object to represent the Category table. Of course, keep in mind that if you are using EF Code first you do not need to create the table or database ahead of time.
Share
0
www.squeed.com - February 18, 11:35 AM

Squeed Team Blog - Squeed.com

If you use Entity Framework and code-first, Code-First can create a database for us based on our model. But this blog post will be about not using Entity Framework as the OR-M at all, instead I already have an existing ...
Share
0
thedatafarm.com - February 16, 11:30 AM

Using EF 4.3 Code First Migrations with an Existing Database : Don't Be Iffy

In working on my upcoming EF 4.3 Migrations video for Pluralsight , I wanted to work out how to use this with an existing database. Problem solved, but then I tried to use it in a production application and found an easy-to-fix problem.
Share
0
www.devart.com - February 16, 9:34 AM

Entity Framework Code-First Migrations support for Oracle ... - Devart

Entity Framework Code-First Migrations continues the development of Entity Framework Code-First functionality from Entity Framework 4.1 and Entity Framework 4.2, extending the functionality of dynamic database creating ...
Share
1
romiller.com - February 15, 5:32 AM

Testing With a Fake DbContext

One of the most popular posts on my blog has been “EF CTP4 Tips & Tricks: Testing With Fake DbContext”. That post was built on a pre-release version of Entity Framework so I thought I’d p...
Share
1
blogs.msdn.com - February 15, 5:06 AM

Sneak Preview: Entity Framework 5.0 Performance Improvements - ADO.NET team blog - Site Home - MSDN Blogs

Share
1
blogs.msdn.com - February 13, 8:33 AM

EF 4.3 Code-Based Migrations Walkthrough - ADO.NET team blog ...

We have released the first go-live release of our Code First Migrations work as part of Entity Framework 4.3. This post will provide an overview of the functionality that is available inside of Visual Studio for interacting with ...
Share
1
thedatafarm.com - February 11, 1:50 PM

Using T4Scaffolding to Create DbContext and Repository from Domain Classes : Don't Be Iffy

You may already be familiar with the fact that ASP.NET MVC 3 tooling includes a scaffolding option that let’s you point to a domain class and automatically build a Controller, a set of Views and if it does not exist yet, an Entity Framework DbContext...
Share
1
www.codewrecks.com - February 7, 4:58 AM

Entity Framework error 3002 on views when model updated

One of the most annoying problem with the first version of entity Framework is that you have barely no option other than go with “Database First approach”, and when you start mapping database views your life started to become difficult.
Share
0
www.adminscode.com - February 7, 4:56 AM

EF CodeFirst: Fluent API | Coders & Admins

I have a Project model that has a collection of Category and vice-versa. I have a few questions on this.
Share
1
channel9.msdn.com - January 30, 4:33 PM

Visual Studio Toolbox: Entity Framework Part 2

In this episode, Rowan Miller and Diego Vega return for Part 2 of our deep dive into the Entity Framework.
Share
1
blogs.msdn.com - January 30, 1:38 AM

Exception from DbContext API: EntityConnection can only be constructed with a closed DbConnection

In several situations we recommend opening the database connection explicitly to override Entity Framework's default behavior, which is to automatically open and close the connection as needed.
Share
1
www.martinwilley.com - February 20, 6:28 PM

Static Void - EF Code First Many to Many Mapping

EF Code First Many to Many Mapping. I wanted to use a many-to-many relationship using Entity Framework Code First (v4.1/4.2). Using pure code first such as this: using (var context = new MyContext()) { var employee = new ...
Share
1
www.shujaat.net - February 18, 11:36 AM

Muhammad Shujaat Siddiqi: Entity Framework Code First ...

Basically EF Code First uses conventions for keys, either primary or foreign keys. Just adding a non-nullable primitive key for holding Department table's foreign key would update the table definition to have a non-nullable ...
Share
0
reddevnews.com - February 18, 11:33 AM

Entity Framework 5.0 and How We Got Here - Redmond Developer News (blog)

Entity Framework 5.0 and How We Got HereRedmond Developer News (blog)Many developers complained that EF 4 was misleading because the ORM was really only version 2.
Share
0
stackoverflow.com - February 16, 9:36 AM

Using DateTime properties in Code-First Entity Framework and SQL Server - Stack Overflow

Share
0
weblogs.asp.net (via @christianfredh) - February 16, 9:32 AM

Using EF “Code First” with an Existing Database - ScottGu's Blog

ASP.NET, Visual Studio, ASP.NET 2.0, .NET (Using EF “Code First” with an Existing Database - http://t.co/Ne30ONTi #dotnet #ef #codefirst...)...
Share
1
visualstudiomagazine.com - February 15, 5:06 AM

Microsoft Boosts Performance in Entity Framework 5.0 -- Visual Studio Magazine

The Microsoft ADO.NET team announced that Entity Framework 5.0 could boost application performance by some 67 percent over EF 4.0.
Share
1
blogs.msdn.com - February 13, 8:34 AM

EF 4.3 Automatic Migrations Walkthrough - ADO.NET team blog ...

We have released the first go-live release of our Code First Migrations work as part of Entity Framework 4.3. This post will provide an overview of the functionality that is available inside of Visual Studio for interacting with ...
Share
1
blogs.msdn.com - February 13, 8:33 AM

EF 4.3 Released - ADO.NET team blog - Site Home - MSDN Blogs

New Code First Migrations Feature. This is the primary new feature in EF 4.3 and allows a database created by Code First to be incrementally changed as your Code First model evolves. Removal of EdmMetadata table.
Share
1
thedatafarm.com - February 10, 10:51 AM

Inserting Many to Many Relationships in EF with or without a Join Entity : Don't Be Iffy

Many to Many relationships are defined in a database using a join table. Depending on the schema of that join table, they are represented differently in an Entity Framework EDM.
Share
0
www.undisciplinedbytes.com - February 7, 4:57 AM

Entity Framework | Undisciplined Bytes

If you already have the code for your model, then EF can generate the database to store this model as well as the rest of the code handling persistance to this database, using the Code First approach.
Share
1
stackoverflow.com (via @stackfeed) - February 7, 4:55 AM

ef code first - Creating an EF CodeFirst DbContext using Roslyn - Stack Overflow

Creating an EF CodeFirst DbContext using Roslyn: Just a little idea I'm playing with, not sure if it's viable or...
Share
0
blogs.msdn.com - January 30, 4:32 PM

Some gotchas when using ASP.NET MVC with Entity Framework Code

NET MVC and Entity Framework Code First and discovered a few gotchas. Which I intend to share here. So this post is not about how EF code first or MVC works. For a really good tutorial on this (ASP.NET MVC and using EF ...
Share
1
Previous 1 2 3 4 Next