ExecuteQuery() public static method

Executes the query.
public static ExecuteQuery ( IActiveRecordQuery query ) : object
query IActiveRecordQuery The query.
return object
Ejemplo n.º 1
0
 //This may return more than one result, and more than one type,
 //so this is here just to complement the non-generic version, instead of
 //enhancing it, like the rest of the methods here.
 public static object ExecuteQuery(IActiveRecordQuery q)
 {
     return(ActiveRecordBase.ExecuteQuery(q));
 }