 | RepositoryTDelete Method |
Deletes a single entity from netFORUM's database
Namespace: Ignition.Framework.RepositoriesAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.28229
Syntaxpublic void Delete(
T entity
)
Public Sub Delete (
entity As T
)
public:
virtual void Delete(
T entity
) sealed
abstract Delete :
entity : 'T -> unit
override Delete :
entity : 'T -> unit Parameters
- entity T
- The entity to delete
Remarks
This delete operation honors the delete mode (hard vs soft) if configured via
ForceDeleteModeAttribute,
otherwise the global delete mode defined in netFORUM will be used.
See Also