Directly deletes an entity (or multiple entities) in the database

Namespace: MonoSoftware.LLBLGen
Assembly: MonoSoftware.LLBLGen (in MonoSoftware.LLBLGen.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
int DeleteEntitiesDirectly(
	string entityName,
	IRelationPredicateBucket filter
)
Visual Basic
Function DeleteEntitiesDirectly ( 
	entityName As String,
	filter As IRelationPredicateBucket
) As Integer
Visual C++
int DeleteEntitiesDirectly(
	String^ entityName, 
	IRelationPredicateBucket^ filter
)
F#
abstract DeleteEntitiesDirectly : 
        entityName : string * 
        filter : IRelationPredicateBucket -> int 

Parameters

entityName
Type: System..::..String
The name of the entity
filter
Type: IRelationPredicateBucket
Filter to use

Return Value

Type: Int32
Number of deleted entities

See Also