/// <summary>
 /// Create a new Category object.
 /// </summary>
 /// <param name="categoryId">Initial value of the CategoryId property.</param>
 /// <param name="categoryName">Initial value of the CategoryName property.</param>
 /// <param name="updateBy">Initial value of the UpdateBy property.</param>
 /// <param name="updateDate">Initial value of the UpdateDate property.</param>
 /// <param name="createBy">Initial value of the CreateBy property.</param>
 /// <param name="createDate">Initial value of the CreateDate property.</param>
 public static Category CreateCategory(global::System.Int32 categoryId, global::System.String categoryName, global::System.String updateBy, global::System.DateTime updateDate, global::System.String createBy, global::System.DateTime createDate)
 {
     Category category = new Category();
     category.CategoryId = categoryId;
     category.CategoryName = categoryName;
     category.UpdateBy = updateBy;
     category.UpdateDate = updateDate;
     category.CreateBy = createBy;
     category.CreateDate = createDate;
     return category;
 }
 /// <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);
 }