DataContext, Repositories and Unit of Work

2019-09-07 04:33发布

问题:

I have 2 repositories for 2 different entities and each one has its own private LINQ-to-SQL DataContext.

In addition, I have a service class that must return a result from these 2 repositories.

Question 1 - Should I have a common DataContext for both repositories? (I guess by instantiating a DataContext in the service class and injecting it to the 2 repositories.)

Question 2 - Is that what the Unit of Work is for? Many thanks for the help.

回答1:

This tutorial answered my questions:

http://www.asp.net/entity-framework/tutorials/implementing-the-repository-and-unit-of-work-patterns-in-an-asp-net-mvc-application



标签: linq-to-sql