Public 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 DataHelper 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)
public Dictionary<string,object> LoadOne( string tableName, string whereClause, IEnumerable<object> nameValueParameters )
public: Dictionary<string*,Object*>* LoadOne( string* tableName, string* whereClause, IEnumerable<Object*>* nameValueParameters )
public: 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.