Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8784009
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T20:58:28+00:00 2026-06-13T20:58:28+00:00

I am using Entity Framework and I am trying to learn Unit of Work

  • 0

I am using Entity Framework and I am trying to learn Unit of Work pattern in combination with Repository pattern.

From what i understood until now, Unit of Work is responsible with keeping track of the changes made to the entity objects. However, isn’t the DataContext doing the same thing?

So, implementing unit of work pattern isn’t like “forcing” you to use the same context across all methods?

public class EFUnitOfWork : IUnitOfWork
{
    EFContext context = new EFContext();
    public void Commit()
    {
        context.SaveChanges();
    }
}

public class ProductsRepository(IUnitOfWork unitOfWork)
{
    /* CRUD methods here */
}

public void InsertProducts()
{
    var unitOfWork = new EFUnitOfWork(); // <-- this will normally be injected via constructor
    var productsRepository = new ProductsRepository(unitOfWork);

    productsRepository.Insert(new Product { Name = "Product 1", Description = "Description" });
    productsRepository.Insert(new Product { Name = "Product 2", Description = "Description" });
    productsRepository.Insert(new Product { Name = "Product 3", Description = "Description" });

    unitOfWork.Commit();
}

Is this the right way of using Unit of Work with Entity Framework?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T20:58:30+00:00Added an answer on June 13, 2026 at 8:58 pm

    Yes, you share the same DataContext. Here’s a tutorial that will help you: http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/implementing-the-repository-and-unit-of-work-patterns-in-an-asp-net-mvc-application

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using Entity Framework 4.1 and the repository pattern . I am trying
I'm trying to implement the repository pattern using entity framework code first rc 1.
I am using Entity Framework. I am trying to get the results from linq
When using ASP.NET MVC plus Entity Framework, and trying to implement a generic repository
Hey i am trying to work with entity framework using in DB first mode.
I'm using entity framework with POCOs and the repository pattern and am wondering if
I am trying to build a generic repository using Entity Framework 4.0 using a
i'm trying to implement a Repository and UnitOfWork patterns using Entity Framework. This is
I'm using entity framework and trying to unit test my data services which are
Working on a project using Entity Framework (4.3.1.0). I'm trying to figure out how

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.