Example #1
0
 public void ClonedPreparedVersionSupport()
 {
     C.Notation         = DbCallNotation.Scalar;
     C.ParametersSoruce = new { id = 2, type = "SCALAR" };
     E.Execute(C).Wait();
     Assert.AreEqual(4, C.Result);
     C = C.Clone(new { id = 4, type = "SCALAR" });
     E.Execute(C).Wait();
     Assert.AreEqual(8, C.Result);
 }