在Entity Framework 7中是否有DbSet <tentity> .Local等效?

时间:2015-11-20 04:46:01

标签: c# entity-framework entity-framework-core

我需要一个

ObservableCollection<TEntity>

在EF7中,

DbSet<TEntity>.Local

似乎不存在;

有解决方法吗?

1 个答案:

答案 0 :(得分:7)

当前版本的EntityFramework(RC1-final)没有DbSet.Local功能。但!您可以使用当前的扩展方法实现类似的功能:

public static class Extensions
{
    public static ObservableCollection<TEntity> GetLocal<TEntity>(this DbSet<TEntity> set)
        where TEntity : class
    {
        var context = set.GetService<DbContext>();
        var data = context.ChangeTracker.Entries<TEntity>().Select(e => e.Entity);
        var collection = new ObservableCollection<TEntity>(data);

        collection.CollectionChanged += (s, e) =>
        {
            if (e.NewItems != null)
            {
                context.AddRange(e.NewItems.Cast<TEntity>());
            }

            if (e.OldItems != null)
            {
                context.RemoveRange(e.OldItems.Cast<TEntity>());
            }
        };

        return collection;
    }
}

注意:如果您查询更多数据,它将不会刷新列表。它会将对列表的更改同步回更改跟踪器。