/// <summary> /// Create a new OrderDetail object. /// </summary> /// <param name="orderID">Initial value of the OrderID property.</param> /// <param name="productID">Initial value of the ProductID property.</param> public static OrderDetail CreateOrderDetail(global::System.Int32 orderID, global::System.Int32 productID) { OrderDetail orderDetail = new OrderDetail(); orderDetail.OrderID = orderID; orderDetail.ProductID = productID; return orderDetail; }
/// <summary> /// Deprecated Method for adding a new object to the OrderDetails EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToOrderDetails(OrderDetail orderDetail) { base.AddObject("OrderDetails", orderDetail); }