public virtual IDbCommand BuildAllRecordsQueryCommand( string tableName, string fieldList, string orderBy, DataRowProcessMethod selectMethod );
fieldList
Fields to query (or * for all fields) - Note that this setting only applies if the system is NOT in Stored Procedure mode!
orderBy
Order (or empty string if no special order is desired) - Note that this setting only applies if the system is NOT in Stored Procedure mode!
selectMethod
Select method (such as stored procedure or select commands)
[prefix]get[Tablename]AllRecords
For instance, if the prefix is the default prefix ("milos_"), and the table name is Customer, then the resulting stored procedure the system would use is:
milos_getCustomerAlLRecords
Note that the list of fields as well as the sort order is defined by the stored procedure, and not by the fields passed to this method.