Overload | Description |
---|---|
Delete<T>(T) | Delete a specific object from the database The object must have a primary key property of Id or ObjectNameId as a type of long or an exception will be thrown. Example primary key: CustomerId |
Delete<T>(Int64[]) | Perform a fast bulk delete of a list of primary keys |
Delete<T>(Int64) | Delete an object from the database by the primary key The object must have a primary key property of Id or ObjectNameId as a type of long or an exception will be thrown. Example primary key: CustomerId |