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