Ejemplo n.º 1
0
 public IEnumerable <TEntity> GetList(Expression <Func <TEntity, bool> > predicate)
 {
     using (var db = new FbConnection(ConnectionString))
     {
         return(db.Select(predicate));
     }
 }