Exemplo n.º 1
0
 public virtual TEntity Get <TKey>(TKey id)
 {
     using (var cxt = DbContext(DbOperation.Read))
     {
         var repo = new BaseRepo <TEntity>(cxt);
         return(repo.Get(id));
     }
 }