linq to entity常用操作

一、聚合函数查询

按 Ctrl+C 复制代码
按 Ctrl+C 复制代码

 

二、删除操作

linq to entity常用操作
int result = 0;
if (id > 0)
{
    using (gghdbEntities db = new gghdbEntities())
    {
        var data = db.quote.Where(d => d.id == id).FirstOrDefault();
        db.quote.Remove(data);
        db.SaveChanges();
        result = 1;
    }
}
return result;
linq to entity常用操作

 

三、执行事物(Net4.0以上版本支持)

linq to entity常用操作
using (xxxEntities db = new xxxEntities())
{
    using (TransactionScope transaction = new TransactionScope())
    {
        //操作,出错自动回滚

        //提交事务
        transaction.Complete();
    }
}
linq to entity常用操作

 需要添加引用:using System.Transactions;





本文转自王磊的博客博客园博客,原文链接:http://www.cnblogs.com/vipstone/p/5571988.html,如需转载请自行联系原作者

上一篇:《语义网基础教程(原书第3版)》—— 3.7 查询模式


下一篇:PgSQL · 应用案例 · 经营、销售分析系统DB设计之共享充电宝