6 writes to ApplyingChanges
System.Data.Services.Client (6)
System\Data\Services\Client\DataServiceContext.cs (4)
3838
context.
ApplyingChanges
= true;
3944
context.
ApplyingChanges
= merging;
3962
context.
ApplyingChanges
= true;
4032
context.
ApplyingChanges
= merging;
System\Data\Services\Client\MaterializeFromAtom.cs (2)
265
this.context.
ApplyingChanges
= true;
270
this.context.
ApplyingChanges
= applying;
8 references to ApplyingChanges
System.Data.Services.Client (8)
System\Data\Services\Client\Binding\BindingObserver.cs (5)
374
if (this.Context.
ApplyingChanges
)
512
if (this.Context.
ApplyingChanges
)
593
if (this.Context.
ApplyingChanges
)
712
Debug.Assert(!this.AttachBehavior || this.Context.
ApplyingChanges
, "Entity updates must not happen during Attach or construction phases, deserialization case is the exception.");
714
if (this.Context.
ApplyingChanges
)
System\Data\Services\Client\DataServiceContext.cs (2)
3834
bool merging = context.
ApplyingChanges
;
3958
bool merging = context.
ApplyingChanges
;
System\Data\Services\Client\MaterializeFromAtom.cs (1)
262
bool applying = this.context.
ApplyingChanges
;