2013年10月20日

EF 简单的 CRUD、分页 代码笔记

摘要: 添加:static void Main(string[] args) { CCDBEntities ccdbContext = new CCDBEntities(); MyStudent user = new MyStudent(); user.FName = "胡章诚"; user.FAge = 21; user.FGender = "男"; user.FMath = 88; user.FEnglish = 99; user.FClassId = 2; user.FBirthday = DateTime.Now; ccdbContext.MyStude 阅读全文

posted @ 2013-10-20 22:47 Creater 阅读(296) 评论(0) 推荐(0)

导航