• 大小: 1.35KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: 其他
  • 标签: 其他  

资源简介


entity framework code first封装好的操作helper类(sqlserver版本),支持增删改查操作,支持批量增删改,支持执行sql语句,可执行的完整demo可以下载我的另外一个资源进行参考。

资源截图

代码片段和文件信息

using Entityframework.Extensions;
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Linq;
using System.Linq.expressions;
using System.Text;
using System.Transactions;

namespace efdemo
{
    public class ContentHelp
    {
        /// 
        /// 根据条件查询list集合
        /// 

        /// 
        /// 查询条件
        /// 
        public List GetListByConditions(expression> where) where T : class
        {
            using (var db = new ttContent())
            {
                return db.Set().Where(where).ToList();
            }
        }

        /// 
        /// 查询集合
        /// 

        /// 
        /// 
        public List GetList() where T : class
        {
            using (var db = new ttContent())
            {
   

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        9435  2017-02-04 15:36  ContentHelp.cs

评论

共有 条评论