Ejemplo n.º 1
0
 public int GetItemCountByQuery(Func <T, bool> exp)
 {
     return(GetTable.Count(exp));
 }
Ejemplo n.º 2
0
 public int GetItemCount()
 {
     return(GetTable.Count());
 }
Ejemplo n.º 3
0
 public int Count(Func <T, bool> exp)
 {
     return(GetTable.Count <T>(exp));
 }