Public Function Load( _ ByVal tableName As String, _ ByVal columnName As String, _ ByVal columnValue As Object _ ) As List(Of Dictionary(Of String,Object))
Dim instance As TableCrud Dim tableName As String Dim columnName As String Dim columnValue As Object Dim value As List(Of Dictionary(Of String,Object)) value = instance.Load(tableName, columnName, columnValue)
public List<Dictionary<string,object>> Load( string tableName, string columnName, object columnValue )
public: List<Dictionary<string*,Object*>*>* Load( string* tableName, string* columnName, Object* columnValue )
public: List<Dictionary<String^,Object^>^>^ Load( String^ tableName, String^ columnName, Object^ columnValue )
Parameters
- tableName
- The name of the table
- columnName
- Column name in the database
- columnValue
- The value of the column to search for