IsGrantedAdapter.ReloadPermissionStrategy Property
Namespace: DevExpress.ExpressApp.Security.Adapters
Assembly:
DevExpress.ExpressApp.Security.v24.1.dll
Declaration
public static ReloadPermissionStrategy ReloadPermissionStrategy { get; }
Public Shared ReadOnly Property ReloadPermissionStrategy As ReloadPermissionStrategy
Available values:
Name |
Description |
None
|
For internal use.
|
NoCache
|
Each Session (in XPO) or DBContext (in Entity Framework Core) operates with the most recent permissions loaded from the database.
|
CacheOnFirstAccess
|
Permissions are loaded and cached when the corresponding secured data is accessed for the first time. Cached permissions are used until the user is logged off. This mode significantly reduces the number of database requests when working with secured data.
|
See Also