- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个问题,我什么时候更新我的数据库,我有这个异常。
The instance of entity type 'ExpenseReport' cannot be tracked because another instance with the same key value for {'Id'} is already being tracked. When attaching existing entities, ensure that only one entity instance with a given key value is attached. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see the conflicting key values. tracked already
public async Task UpdateExpenseReportForm(Guid ExpenseReportId)
{
var totalValue = _uow.GetReadRepository<ExpenseItem>().FindByCondition(x => x.ExpenseReportId.Equals(ExpenseReportId)).Sum(x => x.Value);
var expenseReprot = await _uow.GetReadRepository<ExpenseReport>().FindByCondition(x => x.Id.Equals(ExpenseReportId)).FirstOrDefaultAsync().ConfigureAwait(false);
expenseReprot.TotalValue = totalValue - expenseReprot.AdvanceValue;
_uow.GetWriteRepository<ExpenseReport>().Update(expenseReprot);
await _uow.CommitAsync();
}
_uow.GetReadRepository <ExpenseReport> ()
我已经在使用 AsNoTracking 来不映射它
"repository dynamic"
的方法
public void Update(T entity)
{
_dbSet.Update(entity);
}
public IQueryable<T> FindByCondition(Expression<Func<T, bool>> expression)
{
return _dbSet.Where(expression).AsNoTracking();
}
最佳答案
您无需调用_dbSet.Update
因为错误消息表明该实体已经从您之前的查询中被跟踪。
尝试从 FindByCondition
中删除语句“AsNoTracking”。方法,只需在“更新”方法中调用保存:
public void Update(T entity)
{
_dbContext.SaveChanges();
}
public IQueryable<T> FindByCondition(Expression<Func<T, bool>> expression)
{
return _dbSet.Where(expression);
}
这是您可能想要重用的存储库模式的一个很好的通用实现:
public class GenericRepository<TEntity> : IRepository<TEntity> where TEntity : class
{
/// <summary>
/// The context object for the database
/// </summary>
private DbContext _context;
/// <summary>
/// The IObjectSet that represents the current entity.
/// </summary>
private DbSet<TEntity> _dbSet;
/// <summary>
/// Initializes a new instance of the GenericRepository class
/// </summary>
/// <param name="context">The Entity Framework ObjectContext</param>
public GenericRepository(DbContext context)
{
_context = context;
_dbSet = _context.Set<TEntity>();
}
/// <summary>
/// Gets all records as an IQueryable
/// </summary>
/// <returns>An IQueryable object containing the results of the query</returns>
public IQueryable<TEntity> GetQuery()
{
return _dbSet;
}
/// <summary>
/// Gets all records as an IQueryable and disables entity tracking
/// </summary>
/// <returns>An IQueryable object containing the results of the query</returns>
public IQueryable<TEntity> AsNoTracking()
{
return _dbSet.AsNoTracking<TEntity>();
}
/// <summary>
/// Gets all records as an IEnumerable
/// </summary>
/// <returns>An IEnumerable object containing the results of the query</returns>
public IEnumerable<TEntity> GetAll()
{
return GetQuery().AsEnumerable();
}
/// <summary>
/// Finds a record with the specified criteria
/// </summary>
/// <param name="predicate">Criteria to match on</param>
/// <returns>A collection containing the results of the query</returns>
public IEnumerable<TEntity> Find(Expression<Func<TEntity, bool>> predicate)
{
return _dbSet.Where<TEntity>(predicate);
}
public Task<TEntity> FindAsync(params object[] keyValues)
{
return _dbSet.FindAsync(keyValues);
}
/// <summary>
/// Gets a single record by the specified criteria (usually the unique identifier)
/// </summary>
/// <param name="predicate">Criteria to match on</param>
/// <returns>A single record that matches the specified criteria</returns>
public TEntity Single(Expression<Func<TEntity, bool>> predicate)
{
return _dbSet.Single<TEntity>(predicate);
}
/// <summary>
/// The first record matching the specified criteria
/// </summary>
/// <param name="predicate">Criteria to match on</param>
/// <returns>A single record containing the first record matching the specified criteria</returns>
public TEntity First(Expression<Func<TEntity, bool>> predicate)
{
return _dbSet.First<TEntity>(predicate);
}
/// <summary>
/// The first record matching the specified criteria or null if not found
/// </summary>
/// <param name="predicate">Criteria to match on</param>
/// <returns>A single record containing the first record matching the specified criteria or a null object if nothing was found</returns>
public TEntity FirstOrDefault(Expression<Func<TEntity, bool>> predicate)
{
return _dbSet.FirstOrDefault<TEntity>(predicate);
}
/// <summary>
/// Deletes the specified entitiy
/// </summary>
/// <param name="entity">Entity to delete</param>
/// <exception cref="ArgumentNullException"> if <paramref name="entity"/> is null</exception>
public void Delete(TEntity entity)
{
if (entity == null)
{
throw new ArgumentNullException("entity");
}
_dbSet.Remove(entity);
}
/// <summary>
/// Adds the specified entity
/// </summary>
/// <param name="entity">Entity to add</param>
/// <exception cref="ArgumentNullException"> if <paramref name="entity"/> is null</exception>
public void Add(TEntity entity)
{
if (entity == null)
{
throw new ArgumentNullException("entity");
}
_dbSet.Add(entity);
}
/// <summary>
/// Attaches the specified entity
/// </summary>
/// <param name="entity">Entity to attach</param>
public void Attach(TEntity entity)
{
_dbSet.Attach(entity);
}
/// <summary>
/// Detaches the specified entity
/// </summary>
/// <param name="entity">Entity to attach</param>
public void Detach(TEntity entity)
{
_context.Entry(entity).State = EntityState.Detached;
}
public void MarkModified(TEntity entity)
{
_context.Entry(entity).State = EntityState.Modified;
}
public DbEntityEntry<TEntity> GetEntry(TEntity entity)
{
return _context.Entry(entity);
}
/// <summary>
/// Saves all context changes
/// </summary>
public void SaveChanges()
{
_context.SaveChanges();
}
/// <summary>
/// Releases all resources used by the WarrantManagement.DataExtract.Dal.ReportDataBase
/// </summary>
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
/// <summary>
/// Releases all resources used by the WarrantManagement.DataExtract.Dal.ReportDataBase
/// </summary>
/// <param name="disposing">A boolean value indicating whether or not to dispose managed resources</param>
protected virtual void Dispose(bool disposing)
{
if (disposing)
{
if (_context != null)
{
_context.Dispose();
_context = null;
}
}
}
}
这是界面:
public interface IRepository<TEntity> : IDisposable where TEntity : class
{
IQueryable<TEntity> GetQuery();
IEnumerable<TEntity> GetAll();
IQueryable<TEntity> AsNoTracking();
IEnumerable<TEntity> Find(Expression<Func<TEntity, bool>> predicate);
TEntity Single(Expression<Func<TEntity, bool>> predicate);
TEntity First(Expression<Func<TEntity, bool>> predicate);
TEntity FirstOrDefault(Expression<Func<TEntity, bool>> predicate);
void Add(TEntity entity);
void Delete(TEntity entity);
void Attach(TEntity entity);
void Detach(TEntity entity);
void MarkModified(TEntity entity);
void SaveChanges();
}
注意,如果实体没有被跟踪,只需要调用“Attach”或“MarkModified”,在大多数情况下,您可以简单地进行查询,修改被跟踪实体的某些属性,然后调用
SaveChanges
.
public class UnitOfWork : IUnitOfWork
{
private readonly YouDatabaseContext _context = new YouDatabaseContext();
private DbContextTransaction _dbContextTransaction;
private GenericRepository<ExpenseReport> _expenseReportRepository;
private GenericRepository<ExpenseItem> _expenseItemRepository;
public GenericRepository<ExpenseReport> ExpenseReportRepository
{
get
{
if (_expenseReportRepository == null)
{
_expenseReportRepository = new GenericRepository<ExpenseReport>(_context);
}
return _expenseReportRepository;
}
set
{
_expenseReportRepository = value;
}
}
public GenericRepository<ExpenseItem> ExpenseItemRepository
{
get
{
if (_expenseItemRepository == null)
{
_expenseItemRepository = new GenericRepository<ExpenseItem>(_context);
}
return _expenseItemRepository;
}
set
{
_expenseItemRepository = value;
}
}
public void BeginTransaction()
{
_dbContextTransaction = _context.Database.BeginTransaction();
}
public void BeginTransaction(IsolationLevel isolationLevel)
{
_dbContextTransaction = _context.Database.BeginTransaction(isolationLevel);
}
public int Save()
{
return _context.SaveChanges();
}
public Task<int> SaveAsync()
{
return _context.SaveChangesAsync();
}
public void Commit()
{
if (_dbContextTransaction!=null)
{
_dbContextTransaction.Commit();
}
}
public void RollBack()
{
if (_dbContextTransaction != null)
{
_dbContextTransaction.Rollback();
}
}
private bool _disposed;
protected virtual void Dispose(bool disposing)
{
if (!_disposed)
{
if (disposing)
{
_context.Dispose();
_dbContextTransaction?.Dispose();
}
}
_disposed = true;
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
}
和界面:
public interface IUnitOfWork : IDisposable
{
void BeginTransaction();
void BeginTransaction(IsolationLevel isolationLevel);
int Save();
}
关于c# - 无法跟踪实体类型 Model 的实例,因为已经在跟踪另一个具有相同键值 {'Id' } 的实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57450937/
有没有办法在 xdebug 跟踪输出中查看 echo 或 print 函数调用。我正在为我在我的服务器中运行的所有脚本寻找一个全局配置(或一种方法)。 例子: 我希望跟踪输出显示 echo 调用。默
我将应用程序从2.0.0M2升级到了2.1.0,但是当我尝试运行该应用程序时,出现此错误: Note: /Volumes/Info/proyectos-grails/vincoorbis/Member
我如何在共享点中执行日志记录。我想使用跟踪。 以便它记录 12 个配置单元日志。 最佳答案 微软提供了一个例子: http://msdn.microsoft.com/en-us/library/aa9
如何跟踪 eclipse 和 android 模拟器的输出。我习惯于在 Flash 和 actionscript 中这样做。 在 AS3 中它将是: trace('我的跟踪语句'); 最佳答案 您有几
是否可以在 Postgresql 上进行查询跟踪?我在带有 OLEDB 界面的 Windows 上使用 9.0。 此外,我需要它是实时的,而不是像默认情况下那样缓冲... 最佳答案 我假设您的意思是在
第一天 HaxeFlixel 编码器。愚蠢的错误,但谷歌没有帮助我。 如何使用 Haxe、NME 和 Flixel 追踪到 FlashDevelop 输出。它在使用 C++ 执行时有效,但对 Flas
我有一个关于 iPhone 上跟踪触摸的快速问题,我似乎无法就此得出结论,因此非常感谢任何建议/想法: 我希望能够跟踪和识别 iPhone 上的触摸,即。基本上每次触摸都有一个起始位置和当前/移动位置
我正在做我的大学项目,我只想跟踪错误及其信息。错误信息应该与用户源设备信息一起存储在数据库中(为了检测源设备,我正在使用MobileDetect扩展名)。我只想知道应该在哪里编写代码,以便获得所有错误
我正在 Azure 中使用多个资源,流程如下所示: 从 sftp 获取文件 使用 http 调用的数据丰富文件 将消息放入队列 处理消息 调用一些外部电话 传递数据 我们如何跟踪上述过程中特定“运行”
在我的 WCF 服务中,当尝试传输大数据时,我不断收到错误:底层连接已关闭:连接意外关闭 我想知道引发此错误的具体原因,因此我设置了 WCF 跟踪并可以读取 traces.svclog 文件。 问题是
我的目标是在 Firebase Analytics 中获取应用数据,在 Google Universal Analytics 中获取其他自定义数据和应用数据。 我的问题是我是否在我的应用上安装 Fir
我正在 Azure 中使用多个资源,流程如下所示: 从 sftp 获取文件 使用 http 调用的数据丰富文件 将消息放入队列 处理消息 调用一些外部电话 传递数据 我们如何跟踪上述过程中特定“运行”
我们正在考虑跟踪用户通过 Tridion 管理的网站的旅程的要求,然后能够根据此行为将此用户识别为“潜在客户”,然后如果他们在之后没有返回,则触发向此用户发送电子邮件X 天。 SmartTarget
在 Common Lisp 中,函数(跟踪名称)可用于查看有关函数调用的输出。 如果我的函数是用局部作用域声明的,我如何描述它以进行跟踪? 例如,如何跟踪栏,如下: (defun foo (x)
有什么方法可以检测文本框的值是否已更改,是用户明确更改还是某些 java 脚本代码修改了文本框?我需要检测这种变化。 最佳答案 要跟踪用户更改,您可以添加按键处理程序: $(selector).key
int Enable ( int pid) { int status; #if 1 { printf ( "child pid = %d \n", pid ); long ret =
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
我有以下测试代码: #include int main(void) { fprintf(stderr, "This is a test.\n"); int ret = open("s
我有一个闭源 Java 应用程序,供应商已为其提供了用于自定义的 API。由于我没有其他文档,我完全依赖 API 的 javadoc。 我想跟踪特定用例在不同类中实际调用的方法。有什么办法可以用 ec
我正在学习 PHP。我在我的一个 php 函数中使用了如下所示的 for 循环。 $numbers = $data["data"]; for ($i = 0;$i send($numbers[
我是一名优秀的程序员,十分优秀!