vote up 3 vote down star
4

Are there any open-source examples of ASP.NET MVC applications that use the Entity Framework? I have found Nerd Dinner to be helpful but it is using Linq to SQL.

I am trying to use the Entity Framework in a strongly-typed ASP.NET MVC project and am finding that anything beyond the simple tutorial becomes rather difficult to implement. I am thinking that if I could see some slightly more complex example code, that would help me a great deal. I am particularly interested in examples that are "real-world" and have to deal with multiple data tables when performing data entry/updates. Is anyone familiar with a good source for this information?

So far in my experience, I have not used much ASP.NET MVC but have been using the Entity Framework for about 8 months.

flag

79% accept rate
Couldn't you just take the NerdDinner sample, toss out Linq-to-SQL, and use Entity Framework instead? Should be fairly simple to do. – marc_s Jun 4 at 14:34
That's what I've done but I'm looking for more so that I can see more about the intricacies of using EF in MVC – YeahStu Jun 4 at 15:26

4 Answers

vote up 1 vote down check

The EF team, in conjunction with P&P, are currently in the process of developing an EF (version 4) data access reference implementation that uses ASP.NET MVC as the front-end.

The project will be made available iteratively on CodePlex here:

http://dataguidance.codeplex.com/

We haven't yet made our first source drop but it will be happening within the next couple of weeks.

UPDATE: We have now dropped code - please be advised that it should be considered alpha quality and is subject to change.

link|flag
This is definitely what I am looking for, but I must admit it is a bit confusing to try and learn what the source code is doing with a lot of the new features of .NET 4 to which I haven't yet been exposed. – YeahStu Oct 8 at 14:16
vote up -1 vote down

Check out the Kooboo CMS, it is built in MVC and also use the EF.

Link: http://www.kooboo.com

link|flag
If by EF you mean "Extension Framework", then you might be correct. However, I am interested specifically in an ASP.NET MVC project that uses the "Entity Framework." – YeahStu Dec 9 at 13:15
Yes, I mean Entity framework. I think the file is called *.edml. – Jack Dec 14 at 9:58
vote up 1 vote down

You might check out MvcCms at http://mvccms.codeplex.com. It isn't officially released until July but there is source code available.

link|flag
Mvc Cms has an official release now. Only a moth late! – MvcCmsJon Aug 7 at 4:29
vote up 1 vote down

Here is what I found so far

ASP.NET MVC Example Application over Northwind with the Entity Framework

Same article but possibly newer?

link|flag
This is helpful, but I am ideally looking for more complex (i.e. real-world examples). – YeahStu Jun 4 at 13:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.