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