@trudb/tru-common-lib 0.2.26 → 0.2.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1985,7 +1985,9 @@ class TruDataContext {
|
|
|
1985
1985
|
this._breezeContext = this.breezeContextFactory.createContext();
|
|
1986
1986
|
this.entityAccessor.context = this;
|
|
1987
1987
|
this.entityManager.entityChanged.subscribe((changeArgs) => {
|
|
1988
|
-
if (changeArgs.entityAction !== EntityAction.AttachOnQuery &&
|
|
1988
|
+
if (changeArgs.entityAction !== EntityAction.AttachOnQuery &&
|
|
1989
|
+
changeArgs.entityAction !== EntityAction.MergeOnQuery &&
|
|
1990
|
+
changeArgs.entityAction !== EntityAction.MergeOnSave) {
|
|
1989
1991
|
this.propertyChanged(changeArgs);
|
|
1990
1992
|
this.entityChangedHandler(changeArgs);
|
|
1991
1993
|
}
|