Inheritance: System.Data.Objects.DataClasses.EntityObject
示例#1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Checkpoints EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToCheckpoints(Checkpoint checkpoint)
 {
     base.AddObject("Checkpoints", checkpoint);
 }
示例#2
0
 /// <summary>
 /// Create a new Checkpoint object.
 /// </summary>
 /// <param name="checkpointID">Initial value of the CheckpointID property.</param>
 public static Checkpoint CreateCheckpoint(global::System.Int32 checkpointID)
 {
     Checkpoint checkpoint = new Checkpoint();
     checkpoint.CheckpointID = checkpointID;
     return checkpoint;
 }
示例#3
0
 /// <summary>
 /// Create a new Checkpoint object.
 /// </summary>
 /// <param name="checkpointID">Initial value of the CheckpointID property.</param>
 /// <param name="isDeleted">Initial value of the IsDeleted property.</param>
 /// <param name="sortOrder">Initial value of the SortOrder property.</param>
 public static Checkpoint CreateCheckpoint(global::System.Int32 checkpointID, global::System.Boolean isDeleted, global::System.Int32 sortOrder)
 {
     Checkpoint checkpoint = new Checkpoint();
     checkpoint.CheckpointID = checkpointID;
     checkpoint.IsDeleted = isDeleted;
     checkpoint.SortOrder = sortOrder;
     return checkpoint;
 }