我正在使用windowform应用程序将数据插入到AppData文件夹中的.mdf文件和项目文件夹中的.edmx文件中。
插入代码:
5e5c92432e692f803539715bb624cd2e35b5b491c6bc67aee87ae82600dedf12
App.config文件
Customer newCustomer = new Customer();
newCustomer.CustomerName = txtCustomerName.Text;
newCustomer.ShopName = txtShopName.Text;
newCustomer.PersonalPhone = txtPersonalPhoneNo.Text;
newCustomer.ShopPhone= txtShopPhone.Text;
newCustomer.Address = txtShopAddress.Text;
newCustomer.Province = cbProvince.SelectedItem.ToString();
using (NobelDBEntities1 entity = new NobelDBEntities1())
{
entity.Customers.Add(newCustomer);
entity.SaveChanges();
}
注意:
我在堆栈溢出上尝试了所有其他示例但没有得到任何适当的解决方案任何帮助将不胜感激!