コード例 #1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Orders EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToOrders(Orders orders)
 {
     base.AddObject("Orders", orders);
 }
コード例 #2
0
 /// <summary>
 /// Create a new Orders object.
 /// </summary>
 /// <param name="orderID">Initial value of the OrderID property.</param>
 /// <param name="customerID">Initial value of the CustomerID property.</param>
 public static Orders CreateOrders(global::System.Int32 orderID, global::System.String customerID)
 {
     Orders orders = new Orders();
     orders.OrderID = orderID;
     orders.CustomerID = customerID;
     return orders;
 }