Public Overloads Function LoadTop( _ ByVal tableName As String, _ ByVal whereClause As String, _ ByVal parameters As Dictionary(Of String,Object), _ ByVal orderBy As String, _ ByVal maxRecords As Integer _ ) As List(Of Dictionary(Of String,Object))
Dim instance As BaseDatabaseProvider Dim tableName As String Dim whereClause As String Dim parameters As Dictionary(Of String,Object) Dim orderBy As String Dim maxRecords As Integer Dim value As List(Of Dictionary(Of String,Object)) value = instance.LoadTop(tableName, whereClause, parameters, orderBy, maxRecords)
public List<Dictionary<string,object>> LoadTop( string tableName, string whereClause, Dictionary<string,object> parameters, string orderBy, int maxRecords )
Parameters
- tableName
- The name of the table
- whereClause
- A SQL where clause
- parameters
- The parameters to use for the where clause
- orderBy
- Order by SQL Clause
- maxRecords
- The maximum records to retrieve