AuthorizerBaseCanBatchUpdateEntitiesDirectly Method |
Determines whether the caller is allowed to update entities directly in the database.
Namespace: SD.LLBLGen.Pro.ORMSupportClassesAssembly: SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.0.0.0 (5.0.0)
Syntax public virtual bool CanBatchUpdateEntitiesDirectly(
IEntityCore entity
)
Public Overridable Function CanBatchUpdateEntitiesDirectly (
entity As IEntityCore
) As Boolean
Parameters
- entity
- Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityCore
the entity which is passed in to the method to batch update the entities directly in the database, e.g. UpdateMulti (Selfservicing)
or UpdateEntitiesDirectly (adapter)
Return Value
Type:
Booleantrue if the caller is allowed to perform the update, false otherwise
Implements
IAuthorizerCanBatchUpdateEntitiesDirectly(IEntityCore)See Also