我有一个问题,存在很多答案。我得到的例外是:
IEntityChangeTracker的多个实例无法引用实体对象。
当我浏览网页并在流页面上堆叠时,我已达到这一点,DbContext的实例应该只在每个UnitOfWork中有一个,或者前一个必须分离。听起来很合理!但是,我的问题是我不知道我的代码(下面发布)我必须在哪里进行修改。 我一直在尝试使用Generic Repository和Unit of Work模式以及EF代码第一种方法。
public abstract class Repository<T> : IRepository<T> where T : BaseEntity
{
protected DbContext EntityContext;
protected readonly IDbSet<T> DbSet;
protected Repository(DbContext context)
{
EntityContext = context;
DbSet = context.Set<T>();
}
public virtual IEnumerable<T> GetList()
{
return DbSet.AsEnumerable();
}
public virtual T Add(T entity)
{
return DbSet.Add(entity);
}
}
通用工作单位:
public sealed class UnitOfWork : IUnitOfWork
{
private DbContext _context;
public UnitOfWork(DbContext context)
{
_context = context;
}
public int Commit()
{
return _context.SaveChanges();
}
private void Dispose(bool disposing)
{
if (!disposing) return;
if (_context == null) return;
_context.Dispose();
_context = null;
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
}
客户端存储库
public class ClientRepository : Repository<Client>, IClientRepository
{
public ClientRepository(DbContext context)
: base(context)
{
}
public override Client Add(Client entity)
{
return DbSet.Add(entity); // <-- Here the exception comes
}
}
这是放置在'DataGenerator'项目中的'GenerateClients'方法的主要部分。
var countries = container.Resolve<ICountryService>().GetList().ToList();
if (!countries.Any())
{
throw new InvalidDataGeneratorException(Strings.NoCountryToCreateClient);
}
var clientService = container.Resolve<IClientService>();
clientService.Create(new Client
{
Name = "Dell",
CountryId = countries[0].Id,
Country = countries[0],
AddressLineOne = "76-98 Victoria Street",});
这里使用ClientRepository的ClientService:
public class ClientService : Service<Client>, IClientService
{
IUnitOfWork UnitOfWork { get; set; }
private readonly IClientRepository _clientRepository;
private readonly ICalculatorService _calculatorService;
public ClientService(IClientRepository clientRepository,
IUnitOfWork unitOfWork,
ICalculatorService calculatorService)
: base(clientRepository, unitOfWork)
{
UnitOfWork = unitOfWork;
_calculatorService = calculatorService;
_clientRepository = clientRepository;
}
public override void Create(Client client)
{
_clientRepository.Add(client);
_clientRepository.Save();
}
}
请注意,部分方法已被删除,以尽量减少问题的长度。
实际上,当我运行类型为Console的数据生成器项目时,在添加客户端之前,添加了许多国家没有问题,但是当它进入客户端服务并进入ClientRepository时,异常升起。
我不知道应该在哪里进行修改以避免异常。非常感谢
答案 0 :(得分:1)
客户是否与国家/地区有关系,您是否将其添加为Client.Country = RELATED_COUNTRY
或许它尝试将同一国家/地区添加两次,我通常会使用Client.CountryId = ID_OF_COUNTRY