04 2012 档案

摘要:Linq to sql在提交更新的时候默认会创建事务,一部分修改发生错误的话其它修改也不会生效 下面是插入2个表中的数据进行事务处理privatevoidTransAdd() { DataClasses1DataContextdb=newDataClasses1DataContext(sqlconStr); if(db.Connection!=null)db.Connection.Open(); DbTransactiontran=db.Connection.BeginTransaction(); db.Transaction=tran; try { studentmystudent... 阅读全文
posted @ 2012-04-14 13:18 meetweb 阅读(2231) 评论(0) 推荐(0) 编辑
摘要:1.建立2个关系表,分别是student, class表. 学生与课程表. 如下图所示例 2. 在vs2010 中新建窗体. 并写代码如下:namespaceLinqTest{publicpartialclassFrmManyToMany:Form{internalstaticstringsqlconStr=@"DataSource=localhost;InitialCatalog=lxPower;user=sa;pwd=";publicFrmManyToMany(){InitializeComponent();}privatevoidFrmManyToMany_Load( 阅读全文
posted @ 2012-04-07 22:06 meetweb 阅读(4778) 评论(0) 推荐(2) 编辑
摘要:下面文章是作者在实际项目中学习的积累,希望能给后来者提供一些范例(LINQ 学习系列)(1)使用 LINQ to SQL 的典型步骤(LINQ 学习系列)(2)LINQ to SQL 查询 (LINQ 学习系列)(3)学习Linq的几个基础知识 (LINQ 学习系列)(4)Linq教程实例: LINQ单表操作 (LINQ 学习系列)(5)Linq教程实例: 单表操作之增 删 改 查询(LINQ 学习系列)(6)Linq教程实例: 使用自写类代码来访问数据 (LINQ 学习系列)(7)Linq教程实例: LINQ多表关联操作 (LINQ 学习系列)(8)Linq教程实例: 事务处理分部类和方法. 阅读全文
posted @ 2012-04-04 17:49 meetweb 阅读(761) 评论(0) 推荐(1) 编辑
摘要:1.自定义一个和数据表相对应的类.例如建议StudentClass.cs /** *meetweb@sohu.com *ModifyBy2012-3 **/ usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Data.Linq.Mapping; usingSystem.Data; usingSystem.Reflection; usingSystem.Linq.Expressions; usingSystem.ComponentModel; namespaceLinqTest { [Tabl. 阅读全文
posted @ 2012-04-04 17:44 meetweb 阅读(820) 评论(0) 推荐(0) 编辑