Overload | Description |
---|---|
LoadOne(String,String,IEnumerable<Object>) | Get a single record for a table and a parameterized where clause and return a dictionary. |
LoadOne<T>(IEnumerable<Object>) | Load a single object by the passed parameters |
LoadOne<T>(String,IEnumerable<Object>) | Load the first record in a table based on a where clause |
LoadOne<T>(String,IEnumerable<Object>,String) | Load the first record in a table based on a where clause |
LoadOne(String,String,Dictionary<String,Object>) | Get a single record for a table and a parameterized where clause and return a dictionary. |
LoadOne(String,String,Object) | Get one record for a table for a specific column and value. |
LoadOne(String) | Load the first record in a table and return a dictionary of columns or null if there are no records. |
LoadOne<T>(Dictionary<String,Object>) | Load a single object by the passed parameters |
LoadOne<T>(String) | Load the first record in a table based on a where clause |
LoadOne<T>(String,Dictionary<String,Object>) | Load the first record in a table based on a where clause |
LoadOne<T>(String,Dictionary<String,Object>,String) | Load the first record in a table based on a where clause |
LoadOne<T>() | Load the first record from the table |