示例#1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Categories EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToCategories(Category category)
 {
     base.AddObject("Categories", category);
 }
示例#2
0
 /// <summary>
 /// Create a new Category object.
 /// </summary>
 /// <param name="categoryID">Initial value of the CategoryID property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="parrentID">Initial value of the ParrentID property.</param>
 /// <param name="order">Initial value of the Order property.</param>
 /// <param name="status">Initial value of the Status property.</param>
 public static Category CreateCategory(global::System.Int32 categoryID, global::System.String name, global::System.Int32 parrentID, global::System.Int32 order, global::System.Int32 status)
 {
     Category category = new Category();
     category.CategoryID = categoryID;
     category.Name = name;
     category.ParrentID = parrentID;
     category.Order = order;
     category.Status = status;
     return category;
 }