Я отправляю запрос авторизации, в контроллере метода для авторизации, я пытаюсь обновить сущность для пользователя, который прошел авторизацию, но у меня есть ошибка:
Экземпляр типа сущности 'SUsers' не может быть отслежен, поскольку другой экземпляр со значением ключа '{Id: 1}' уже отслеживается. При подключении существующих объектов убедитесь, что подключен только один экземпляр объекта с данным значением ключа.
стек используется
asp core 2.2, spa, vue, pwa, jwt, automapper 8.8.4, Microsoft.EntityFrameworkCore 2.2.4
Версия
- Чистое ядро 2.2
- Microsoft.EntityFrameworkCore 2.2.4
- Microsoft.EntityFrameworkCore.InMemory 2.2.4
- Microsoft.EntityFrameworkCore.Design 2.2.4
- Microsoft.EntityFrameworkCore.SqlServer 2.2.4
0, DI
public static class StartupExtension
{
public static IServiceCollection AddDependencies(this IServiceCollection _iServiceCollection, IConfiguration AppConfiguration )
{
#region Data
string ids = System.Guid.NewGuid().ToString();
_iServiceCollection.AddDbContext<BaseDbContext, FakeDbContext>(opt =>
{
opt.UseInMemoryDatabase(ids);
});
_iServiceCollection.AddScoped<IBaseDbContext>(provider => provider.GetService<BaseDbContext>());
#endregion
#region AutoMapper
var config = new MapperConfiguration(cfg => {
cfg.AddMaps("PWSPA.WEB", "PWSPA.BLL");
});
config.AssertConfigurationIsValid();
#endregion
#region Repository
_iServiceCollection.AddScoped(typeof(IGenericRepository<>), typeof(GenericRepository<>));
_iServiceCollection.AddScoped<IUnitOfWork, UnitOfWork>();
#endregion
#region service
#region mapper service
_iServiceCollection.AddScoped(typeof(IGenericMapperService<,>), typeof(GenericMapperService<,>));
_iServiceCollection.AddScoped(typeof(IMapperService), typeof(MapperService));
#endregion
_iServiceCollection.AddScoped<IAuthService, AuthService>();
#endregion
return _iServiceCollection;
}
}
1. Api Controller
public class AuthController : BaseApiController
{
private readonly ILogger _log;
private readonly SecuritySettings _config;
private readonly IUserVerify _signInMgr;
private readonly IAuthService _iAuthService;
[AllowAnonymous]
[HttpPost("login")]
public IActionResult Login([FromBody] RequestTokenApiModel model)
{
try
{
SUsersDTO user = null;
user = _iAuthService.SingleOrDefault(u =>
u.WindowsLogin.ToLower() == "guest");
user.WindowsLogin = "guest";
/*
The instance of entity type 'SUsers' cannot be tracked
because another
instance with the key value '{Id: 1}' is already being
tracked. When
attaching existing entities, ensure that only one entity
instance with a
given key value is attached.
*/
countUpdate = _iAuthService.Update(user);
}
catch (ArgumentException ex)
{
return BadRequest(ex.Message);
}
catch (Exception ex)
{
_log.LogError(ex, ex.Message);
return StatusCode(500, ex.Message);
}
}
}
2. Сервис
public class AuthService : ServiceBase<SUsers, SUsersDTO>, IAuthService
{
public AuthService(IUnitOfWork uow, IMapperService MapperService) : base(uow, MapperService)
{
Repository.Query().Include(u => u.Role).Load();
}
...
}
public class ServiceBase<TModel, TModelDTO> : IGenericService<TModelDTO> where TModel : class where TModelDTO : class
{
private readonly IUnitOfWork db;
private readonly IMapperService _MapService;
private readonly IGenericRepository<TModel> genericRepository;
private readonly IGenericMapperService<TModel, TModelDTO> genericMapService;
public ServiceBase(IUnitOfWork uow, IMapperService iMapperService)
{
_MapService = iMapperService;
db = uow;
genericRepository = uow.Repository<TModel>();
genericMapService = _MapService.Map<TModel, TModelDTO>();
}
protected virtual Type ObjectType => typeof(TModel);
protected virtual IGenericRepository<TModel> Repository => genericRepository;
protected virtual IMapperService MapService => _MapService;
protected virtual IGenericMapperService<TModel, TModelDTO> Map => genericMapService;
protected virtual IUnitOfWork Database => db;
...
public int Update(TModelDTO entityDto)
{
var entity = Map.For(entityDto);
return Repository.Update(entity);
}
}
3. Repos
public class GenericRepository<TEntity> :
IGenericRepository<TEntity> where TEntity : class
{
private readonly IBaseDbContext _context;
private readonly IUnitOfWork _unitOfWork;
private readonly string errorMessage = string.Empty;
public GenericRepository(IBaseDbContext context, IMapper _iMapper) //: base(context, _iMapper)
{
_context = context;
_unitOfWork = new UnitOfWork(context, _iMapper);
}
public Type ObjectType => typeof(TEntity);
protected virtual IBaseDbContext DbContext => _context;
protected virtual DbSet<TEntity> DbSet => _context.Set<TEntity>();
...
public int Update(TEntity updated)
{
if (updated == null)
{
return 0;
}
DbSet.Attach(updated);
_context.Entry(updated).State = EntityState.Modified;
return Save();
}
...
private int Save()
{
try
{
return _unitOfWork.Commit();
}
catch (DbUpdateException e)
{
throw new DbUpdateException(e.Message, e);
}
}
4. UnitOfWork
public class UnitOfWork : IUnitOfWork
{
private readonly IBaseDbContext _dbContext;
private readonly Dictionary<Type, object> _repositories = new Dictionary<Type, object>();
private readonly IMapper _iMapper;
public Dictionary<Type, object> Repositories
{
get => _repositories;
set => Repositories = value;
}
public UnitOfWork(IBaseDbContext dbContext, IMapper _iMapper)
{
_dbContext = dbContext;
this._iMapper = _iMapper;
}
public IGenericRepository<TEntity> Repository<TEntity>() where TEntity : class
{
if (Repositories.Keys.Contains(typeof(TEntity)))
{
return Repositories[typeof(TEntity)] as IGenericRepository<TEntity>;
}
IGenericRepository<TEntity> repo = new GenericRepository<TEntity>(_dbContext, _iMapper);
Repositories.Add(typeof(TEntity), repo);
return repo;
}
public EntityEntry<TEintity> Entry<TEintity>(TEintity entity) where TEintity : class
{
return _dbContext.Entry(entity);
}
...
}
исключение происходит в хранилище
public int Update(TEntity updated)
{
if (updated == null)
{
return 0;
}
/*
on line DbSet.Attach(updated) an exception occurs
*/
DbSet.Attach(updated);
_context.Entry(updated).State = EntityState.Modified;
return Save();
}
Я думаю, что это связано с отображением в службе, которая использует хранилище
public int Update(TModelDTO entityDto)
{
var entity = Map.For(entityDto);
return Repository.Update(entity);
}
Шаги для воспроизведения
- клон https://github.com/UseMuse/asp-core-2.2-clean.git
- решение для сборки, запустите progect PWSPA.WEB
- войти: логин - гость, пройти - любые чарты
- в api-контроллере AuthController, метод Login, строка исключения 90
Ожидаемое поведение:
обновление сущности
ошибка msg
Экземпляр типа сущности 'SUsers' не может быть отслежен, поскольку другой экземпляр со значением ключа '{Id: 1}' уже отслеживается. При подключении существующих объектов убедитесь, что подключен только один экземпляр объекта с данным значением ключа.
StackTrace
в Microsoft.EntityFrameworkCore.ChangeTracking.Internal.IdentityMap 1.ThrowIdentityConflict(InternalEntityEntry entry)
at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.IdentityMap
1.Add (ключ TKey, запись InternalEntityEntry, логическое обновлениеDuplicate)
в Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.StartTracking (запись InternalEntityEntry)
в Microsoft.EntityFrameworkCore.ChangeTracking.Internal.InternalEntityEntry.SetEntityState (EntityState oldState, EntityState newState, Boolean acceptChanges)
в Microsoft.EntityFrameworkCore.ChangeTracking.Internal.EntityGraphAttacher.PaintAction (узел EntityEntryGraphNode, логическая сила)
в Microsoft.EntityFrameworkCore.ChangeTracking.Internal.EntityEntryGraphIterator.TraverseGraph [TState] (узел EntityEntryGraphNode, состояние TState, Func 3 handleNode)
at Microsoft.EntityFrameworkCore.DbContext.SetEntityState[TEntity](TEntity entity, EntityState entityState)
at PWSPA.DAL.Repositories.GenericRepository
1. Обновление (обновлено TEntity) в D: \ repos \ asp-core-2.2-clean2 \ PWSPA. \ Репозитории \ GenericRepository.cs: строка 99
в PWSPA.BLL.Services.ServiceBase`2.Update (TModelDTO entityDto) в D: \ repos \ asp-core-2.2-clean2 \ PWSPA.BLL \ Services \ ServiceBase.cs: строка 208
в PWSPA.API.Controllers.AuthController.Login (модель RequestTokenApiModel) в D: \ repos \ asp-core-2.2-clean2 \ PWSPA.WEB \ API \ AuthController.cs: строка 90