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 8943701
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T11:50:44+00:00 2026-06-15T11:50:44+00:00

I use Unit of Work and Repository patterns in my software. There is a

  • 0

I use Unit of Work and Repository patterns in my software.
There is a dataGridView on form and it gets data from next way:

acceptedBonusesGrid.DataSource = _unitOfWork.DocumentRepository.GetDocumentsInfo();

GetDocumentsInfo is in DocumentRepository. GetDocumentsInfoes – is complex view with joins:

public IQueryable<GetDocumentsInfo> GetDocumentsInfo()
{
     return _context.GetDocumentsInfoes;
}

When user double-clicks on record, it’s form for editing this record appears. I send unit of work to form:

CorrectionAcceptedForm corrForm = new CorrectionAcceptedForm(_unitOfWork, docNum);

Form opens and link to unit of work is in use:

public CorrectionAcceptedForm(UnitOfWork unitOfWork, int docNum)
{
    InitializeComponent();
    _unitOfWork = unitOfWork;

    _documentData = _unitOfWork.DocumentRepository.GetById(docNum);

    AssignValues();
}

User makes changes in the record and saves changes:

private void SaveBill(int billId)
{
    if (ValidateChildren())
    {
        SaveSupplierAddress();
        Bill billData = _documentData.Bills.FirstOrDefault(bill => bill.BillId == billId);
        if (billData != null)
        {
            billData.Description = descriptionTextbox.Text;
            billData.Price = Convert.ToDecimal(priceTextbox.Text.Replace('.', ','));
            _unitOfWork.Save();
        }
    }
}

When this correction form closes, then datagrid on main form reloads:

acceptedBonusesGrid.DataSource = null;
acceptedBonusesGrid.Columns.Clear();
acceptedBonusesGrid.DataSource = _unitOfWork.DocumentRepository.GetDocumentsInfo();

But after reload – all rows in datagrid are old, that was before making changes.
What is the problem?

  • 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-15T11:50:45+00:00Added an answer on June 15, 2026 at 11:50 am

    After 3 months I have discovered problem.
    GetDocumentsInfo() has to be like this:

        public IQueryable<GetDocumentsInfo> GetDocumentsInfo()
        {
            _context.GetDocumentsInfoes.MergeOption = MergeOption.OverwriteChanges;
            return _context.GetDocumentsInfoes;
        }
    

    Now my DataGrid updates when I make changes in child form.

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

Sidebar

Related Questions

I've implemented repository & unit of work patterns for nhibernate. I use ninject as
At the moment I'm working on Asp.Net MVC using: Repository, Unit-Of-Work patterns, Service Layer
I am trying to use the Unity IoC with the unit of work &
For a unit test I want to use the Range attribute from NUnit to
I use Microsoft Visual Studio test Tools assembly for unit testing. And from one
When I use the unit of work pattern (with JPA), I get an entity
Today I would like to implement repository pattern + unit of work pattern for
I'm trying to build a system which follows the repository and unit of work
How we can use Unit of Work pattern with (Entity Framework 4.1) code first
Cheers!I have some doubts about using Unit of Work with Repository. Specially a role

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.