这是我的实体类:
public class Template : ICloneable, IDisposable
{
public int Id { get; set; }
public int InternalId { get; set; }
public int Order { get; set; }
public string Group { get; set; }
public string Description { get; set; }
public string Root { get; set; }
public string Owner { get; set; }
[Timestamp]
public byte[] RowVersion { get; set; }
}
到目前为止,我使用以下代码刷新我的实体:
Remoting.Context.ObjectContext.RefreshAsync(System.Data.Entity.Core.Objects.RefreshMode.StoreWins, Entities);
现在,每个实体都将刷新,如果其中有很多实体,则可能会导致性能问题。因此,我认为最好只刷新rowversion不同的实体。 我该怎么办?