Overload | Description |
---|---|
Delete(String,IEnumerable<Object>) | Delete a record where all parameters are equal |
Delete<T>(IEnumerable<Object>) | Delete the objects by the passed parameters |
Delete(String,Dictionary<String,Object>) | Delete a record where all parameters are equal |
Delete(String,String,Object) | Delete a record by the primary key |
Delete<T>(T) | Delete the corresponding record in the database associated with the primary key of the object |
Delete<T>(Dictionary<String,Object>) | Delete the objects by the passed parameters |