Public Overloads Function LoadOne(Of T As {Class, New})( _ ByVal whereClause As String, _ ByVal parameters As Dictionary(Of String,Object), _ ByVal orderBy As String _ ) As T
Dim instance As ObjectCrud Dim whereClause As String Dim parameters As Dictionary(Of String,Object) Dim orderBy As String Dim value As T value = instance.LoadOne(Of T)(whereClause, parameters, orderBy)
public T LoadOne<T>( string whereClause, Dictionary<string,object> parameters, string orderBy ) where T: class, new()
public: T* LoadOne<T>( string* whereClause, Dictionary<string*,Object*>* parameters, string* orderBy ) where T: ref class, gcnew()
public: T^ LoadOnegeneric<typename T> ( String^ whereClause, Dictionary<String^,Object^>^ parameters, String^ orderBy ) where T: ref class, gcnew()
Parameters
- whereClause
- The where clause to use as the filter
- parameters
- The parameters for the where clause
- orderBy
- What to order the record by
Type Parameters
- T
- Generic object type