本文共 521 字,大约阅读时间需要 1 分钟。
EF 通用数据层父类方法小结
转载:
MSSql 数据库 数据层 父类
增删改查:
using System;using System.Collections.Generic;using System.Data;using System.Data.Entity;using System.Data.Entity.Infrastructure;using System.Linq;using System.Linq.Expressions;using System.Reflection;using System.Text;namespace DAL{ ////// MSSql 数据库 数据层 父类 /// ///public class BaseDAL where T : class,new() { /// /// EF 上下文对象 /// DbContext db = new DBContextFactory().GetDbContext();