/// <summary> /// 用于向 ProductCategory EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// </summary> public void AddToProductCategory(ProductCategory productCategory) { base.AddObject("ProductCategory", productCategory); }
/// <summary> /// 创建新的 ProductCategory 对象。 /// </summary> /// <param name="id">Id 属性的初始值。</param> /// <param name="name">Name 属性的初始值。</param> /// <param name="cover">Cover 属性的初始值。</param> public static ProductCategory CreateProductCategory(global::System.Int64 id, global::System.String name, global::System.String cover) { ProductCategory productCategory = new ProductCategory(); productCategory.Id = id; productCategory.Name = name; productCategory.Cover = cover; return productCategory; }