Overloads Function LoadOne( _ ByVal tableName As String, _ ByVal whereClause As String, _ ByVal parameters As Dictionary(Of String,Object) _ ) As Dictionary(Of String,Object)
Dim instance As IDataHelper Dim tableName As String Dim whereClause As String Dim parameters As Dictionary(Of String,Object) Dim value As Dictionary(Of String,Object) value = instance.LoadOne(tableName, whereClause, parameters)
Dictionary<string,object> LoadOne( string tableName, string whereClause, Dictionary<string,object> parameters )
Parameters
- tableName
- The database table name
- whereClause
- A parameterized where clause
- parameters
- The parameters to use
Return Value
A dictionary of columns and values.