public int GetItemCountByQuery(Func <T, bool> exp) { return(GetTable.Count(exp)); }
public int GetItemCount() { return(GetTable.Count()); }
public int Count(Func <T, bool> exp) { return(GetTable.Count <T>(exp)); }