protected void Button1_Click(object sender, EventArgs e) { String name = TextBox1.Text.Trim(); using (LiBoClothesShopEntities context = new LiBoClothesShopEntities()) { SizeInfo newObj = new SizeInfo() { Name = name }; context.AddToSizeInfoes(newObj); context.SaveChanges(); Response.Redirect("~/Default.aspx"); } }
/// <summary> /// Deprecated Method for adding a new object to the SizeInfoes EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToSizeInfoes(SizeInfo sizeInfo) { base.AddObject("SizeInfoes", sizeInfo); }
/// <summary> /// Create a new SizeInfo object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="name">Initial value of the Name property.</param> public static SizeInfo CreateSizeInfo(global::System.Int32 id, global::System.String name) { SizeInfo sizeInfo = new SizeInfo(); sizeInfo.Id = id; sizeInfo.Name = name; return sizeInfo; }