Inheritance: global::System.Data.Objects.DataClasses.EntityObject
コード例 #1
0
 /// <summary>
 /// Create a new Product object.
 /// </summary>
 /// <param name="identifier">Initial value of the Identifier property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="description">Initial value of the Description property.</param>
 public static Product CreateProduct(global::System.Int32 identifier, global::System.String name, global::System.String description)
 {
     Product product = new Product();
     product.Identifier = identifier;
     product.Name = name;
     product.Description = description;
     return product;
 }
コード例 #2
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Products EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToProducts(Product product)
 {
     base.AddObject("Products", product);
 }