| AuthorizerBaseCanBatchDeleteEntitiesDirectly Method  | 
 
            Determines whether the caller is allowed to delete entities directly in the database. 
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.1.0.0 (5.1.0)
Syntaxpublic virtual bool CanBatchDeleteEntitiesDirectly(
	Type typeOfEntity
)
Public Overridable Function CanBatchDeleteEntitiesDirectly ( 
	typeOfEntity As Type
) As Boolean
Parameters
- typeOfEntity
 - Type: SystemType
the type of the entity to batch delete instances of directly in the database, e.g. DeleteMulti (Selfservicing)
            or DeleteEntitiesDirectly (adapter) 
Return Value
Type: 
Booleantrue if the caller is allowed to perform the delete, false otherwise
Implements
IAuthorizerCanBatchDeleteEntitiesDirectly(Type)
See Also