1
我有10個POCO類。 我正在使用簡單的存儲庫模式和IRespoitory接口和UnitOf工作類的工作單元。工作單位相關知識庫
是否正確(正常)將我的所有IRepository放在一個UnitOfWork實例中?
即: 10 POCO類 - IRepository 10實例 - 只有一個的UnitOfWork類,它包含所有10個庫
UnitOfWork
{
IRepository<Customer> CustomerRepository {get; set;}
IRepository<Customer> CustomerRepository {get; set;}
IRepository<Customer> CustomerRepository {get; set;}
// the same for all others 7 POCo class
// ..other stff
}