vote up 3 vote down star
1

What is alternative patterns of using for Entity Framework ?

Some I know are:

  1. "Plain" EntityFramework - aka Unity of Work

    using (Data.Model c = new Data.Model())
    {
        var z = c.Users.Where(x=>x.Name=='John');
    }

  2. Repository pattern

    //Model implements IRepository
    User user = Model.Instance.Get<User>(u => u.Name == "John");
    

  3. What else ?
  4. ?
flag
I would recommend to change the title of the question because it a little bit confusing. Title is about how to USE Entity Framework and the whole discussion about alternatives (i.e. how to NOT use it) – Bogdan_Ch Aug 5 at 16:57
actually not. I'm trying to get ways HOW to USE EF exactly. I mean that I doesn't need alternative for EF, I need just a possible ways to use - different patterns based on EF. – bug0r Aug 7 at 9:28

4 Answers

vote up 0 vote down

We use code similar to what you have in your unit of work example.

What we do in addition is to map objects to Data Transfer Objects.

link|flag
vote up 1 vote down

A good book to look at is Martin Fowler's "Patterns of enterprise application architecture".

There he goes through some patterns for retrieving/mapping data like DTOs, Unit of work, repository pattern etc... Maybe something could be useful together with the Entity Framework. I'd have to take a look at it.

link|flag
vote up 0 vote down

There are many articles on the subject, but the list will be reduced substantially if you'd like a good one. This article from MSDN Magazine is pretty good, although it deals specifically with n-tier applications. But since you don't say what you're building, maybe it will help.

link|flag
vote up 0 vote down

LINQ 2 SQL can be an alternative. Here is an article Dependency Injection with Unity and Linq to SQL DataContexts

UNITY - http://unity.codeplex.com/

link|flag

Your Answer

Get an OpenID
or

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