ExecuteQuery() публичный статический Метод

Executes the query.
public static ExecuteQuery ( IActiveRecordQuery query ) : object
query IActiveRecordQuery The query.
Результат object
Пример #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));
 }