摘要:
1.新增Customers记录 using (NorthwindEntities myDb = new NorthwindEntities()) { Customers customer = new Customers(); Random rm = new Random(); customer.CustomerID = "A" + rm.Next(9999).ToString(); customer.CompanyName = "EntLib.com Forum"; customer.Address = "http://www.EntLib.c 阅读全文
posted @ 2010-10-09 09:21
jerry-Tom
阅读(1360)
评论(5)
推荐(1)