Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can Anyone recommend a well design open source project with Entity Framework? [closed]

Can Anyone recommend a well design open source project with Entity Framework? I had some tastes about the Entity Framework 4, but I would love to know how people use this framework in some large projects.

Many thanks.

Daoming

like image 309
Daoming Yang Avatar asked Jan 13 '10 10:01

Daoming Yang


2 Answers

While not large, you could check out the All-In-One Code Framework samples. I think there are at least a few examples of the Entity Framework in there. One specific example is:

How to work with table relationships and entity inheritances in ADO.NET Entity Data Model

This code sample includes a step-by-step guide about how to work with Entity Data Model in various ways, including One-to-Many association, Many-to-Many association, One-to-One association, table merging, table splitting, Table-per-Hierarchy inheritance, and Table-per-Type inheritance.

EDIT:

They just added another sample:

CSEFCodeOnly, VBEFCodeOnly

These two samples illustrate how to use one of the EF4 new features, Code Only, to create the EDM metadata and the corresponding .edmx file with POCO entity classes during runtime. They also demonstrate some basic insert and query operations to test the EDM metadata generated by Code Only.

like image 78
GalacticJello Avatar answered Nov 14 '22 19:11

GalacticJello


So far the best I've found is http://www.nopcommerce.com/ - since 1.70 (July 7, 2010) they have been using Entity framework.

like image 41
Dave Hogan Avatar answered Nov 14 '22 19:11

Dave Hogan