Instances represent a lock mode for a row of a relational database table.
The following tables list the members exposed by the LockMode type.
Public Methods
| Name | Description | |
|---|---|---|
| GreaterThan |
Is this lock mode more restrictive than the given lock mode?
| |
| LessThan |
Is this lock mode less restrictive than the given lock mode?
| |
| ToString | (Overrides .ToString().) |
Public Fields
| Name | Description | |
|---|---|---|
| None |
No lock required.
| |
| Read |
A shared lock.
| |
| Upgrade |
An upgrade lock.
| |
| UpgradeNoWait |
Attempty to obtain an upgrade lock, using an Oracle-style
SELECT ... FOR UPGRADE NOWAIT.
| |
| Write |
A Write lock is obtained when an object is updated or inserted.
|