打开软删除后,我在客户端添加一条记录,推送,删除添加的记录推送,然后尝试使用与初始记录相同的主键添加新记录(然后推送)例外。看来EntityDomainManager只是尝试进行新的插入,而不检查记录是否要“更新”而不是插入。
但是,如果我在域管理器构造函数中关闭软删除,一切正常。
我们正在使用增量同步,因此我需要进行软删除才能实现这一功能,因此我们不会在移动设备和服务器之间找到不同的图片。
推荐的方法是什么时候?自定义EntityDomainManager(或其他DomainManager)?如果是这样,那么表格控制器和域管理器之间的交互更清晰是有用的。
我已经构建了这个自定义域管理器,它似乎有效,但我会很感激任何指导/建议。
public class CustomEntityDomainManager<TData> : EntityDomainManager<TData> where TData : class, ITableData
{
public CustomEntityDomainManager(DbContext context, HttpRequestMessage request, ApiServices services)
: base(context, request, services)
{
}
public CustomEntityDomainManager(DbContext context, HttpRequestMessage request, ApiServices services, bool enableSoftDelete) : base(context, request, services, enableSoftDelete)
{
}
public async override Task<TData> InsertAsync(TData data)
{
if (data == null)
{
throw new ArgumentNullException("data");
}
// now then, if we have soft delete enabled & data has been provided with an id in it
if (EnableSoftDelete && data.Id != null)
{
// now look to see if the record exists and if it is deleted
// if so we look to remove the record before then attempting the insert
// record old value of deleted, since need to query to see if deleted.
var oldIncludeDeleted = IncludeDeleted;
try
{
IncludeDeleted = true;
var existingData = await this.Lookup(data.Id).Queryable.FirstOrDefaultAsync();
// if record exists, and its soft deleted then truly delete it
if (existingData != null && existingData.Deleted)
{
// now need to remove this record...
this.Context.Set<TData>().Remove(existingData);
}
}
finally
{
IncludeDeleted = oldIncludeDeleted;
}
}
if (data.Id == null)
{
data.Id = Guid.NewGuid().ToString("N");
}
return await base.InsertAsync(data);
}
答案 0 :(得分:1)
此行为是设计使然 - 我们要求您在执行更新之前执行显式取消删除操作。
你提出的解决方案很好。您也可以将代码移动到表控制器,假设您只需要在一个表中使用此行为。如果您需要多个表,那么自定义域管理器是最好的方法。