Exemplo n.º 1
0
 public GenericAbstractQuery(PropertyBinder aPropertyBinder)
 {
     PropertyBinder = aPropertyBinder;
     query          = new Q();
     tableName      = PropertyBinder.GetTable <T>();
     query.SetStatement(m => m.AddFrom(String.Format(SqlSyntax.DBTABLE, tableName)));
 }