2 writes to serviceDeploymentId
System.Activities.DurableInstancing (2)
System\Activities\DurableInstancing\SaveWorkflowAsyncResult.cs (2)
144
this.
serviceDeploymentId
= reader.GetInt64(1);
454
SaveWorkflowAsyncResult.serviceDeploymentIdsCache.TryGetValue(this.serviceDeploymentHash, out this.
serviceDeploymentId
);
5 references to serviceDeploymentId
System.Activities.DurableInstancing (5)
System\Activities\DurableInstancing\SaveWorkflowAsyncResult.cs (5)
142
if ((this.serviceDeploymentHash != Guid.Empty) && (this.
serviceDeploymentId
== 0))
429
if ((this.serviceDeploymentHash != Guid.Empty) && (this.
serviceDeploymentId
== 0))
445
parameters.Add(new SqlParameter { ParameterName = "@serviceDeploymentId", SqlDbType = SqlDbType.BigInt, Value = (this.
serviceDeploymentId
!= 0) ? (object)this.
serviceDeploymentId
: (object)DBNull.Value });
467
serviceDeploymentIdsCache[this.serviceDeploymentHash] = this.
serviceDeploymentId
;