We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7783a10 commit 980f5a4Copy full SHA for 980f5a4
src/Documents/Conventions/DocumentConventions.ts
@@ -162,6 +162,15 @@ export class DocumentConventions {
162
this._remoteEntityFieldNameConvention = val;
163
}
164
165
+ public set useOptimisticConcurrency(val) {
166
+ this._assertNotFrozen();
167
+ this._useOptimisticConcurrency = val;
168
+ }
169
+
170
+ public get useOptimisticConcurrency() {
171
+ return this._useOptimisticConcurrency;
172
173
174
public deserializeEntityFromJson(documentType: ObjectTypeDescriptor, document: object): object {
175
try {
176
const typeName = documentType ? documentType.name : null;
0 commit comments