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 862df44 commit 512bd6cCopy full SHA for 512bd6c
src/Documents/Conventions/DocumentConventions.ts
@@ -161,6 +161,15 @@ export class DocumentConventions {
161
this._remoteEntityFieldNameConvention = val;
162
}
163
164
+ public set useOptimisticConcurrency(val) {
165
+ this._assertNotFrozen();
166
+ this._useOptimisticConcurrency = val;
167
+ }
168
+
169
+ public get useOptimisticConcurrency() {
170
+ return this._useOptimisticConcurrency;
171
172
173
public deserializeEntityFromJson(documentType: ObjectTypeDescriptor, document: object): object {
174
try {
175
const typeName = documentType ? documentType.name : null;
0 commit comments