It is a provider for AUV using entityframework 6.1.3.
AUV 为 entityframework 6.1.3 版本的提供器。
Install-Package AUV.Entityframework6
- [new]add extension of UnitOfWork
- [remove]some functions
- [fix]code, bugs
-
[new]Query predicate argument.
IQuerable<TEntity> query = _repository.Query(m => m.Name == name);
-
[new]Remove entity by id extension
_repository.Remove(id);
-
[new]Remove multi entities or multi id extension
_repository.RemoveByRange(entity1,entity2,entity3); _repository,RemoveByRange(id1,id2,id3);
-
[new]QueryNoTracking extension
_repository.QueryNoTracking(); _repository.QueryNoTracking(m => m.Name == name);
Read Document
- AUV.PetaPoco5