Click or drag to resize
UnitOfWorkAddForDelete Method (IEntity, IPredicate)
Adds the passed in entity for deletion.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public virtual bool AddForDelete(
	IEntity entityToDelete,
	IPredicate restriction
)

Parameters

entityToDelete
Type: SD.LLBLGen.Pro.ORMSupportClassesIEntity
The entity to delete via this unit of work
restriction
Type: SD.LLBLGen.Pro.ORMSupportClassesIPredicate
Filter to apply during delete. This restriction will be AND-ed with the restriction constructed by a ConcurrencyPredicateFactory instance in entityToDelete (if applicable).

Return Value

Type: Boolean
true if the entity is accepted, false if the entity is rejected (entity is new)
See Also