コード例 #1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Places EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToPlaces(PlaceEntity placeEntity)
 {
     base.AddObject("Places", placeEntity);
 }
コード例 #2
0
 /// <summary>
 /// Create a new PlaceEntity object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="dateFrom">Initial value of the DateFrom property.</param>
 /// <param name="isActive">Initial value of the IsActive property.</param>
 public static PlaceEntity CreatePlaceEntity(global::System.Int32 id, global::System.String name, global::System.DateTime dateFrom, global::System.Boolean isActive)
 {
     PlaceEntity placeEntity = new PlaceEntity();
     placeEntity.Id = id;
     placeEntity.Name = name;
     placeEntity.DateFrom = dateFrom;
     placeEntity.IsActive = isActive;
     return placeEntity;
 }