首页 > 代码库 > Entity Framework Code First 常用方法集成
Entity Framework Code First 常用方法集成
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 | using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using System.Linq.Expressions; using System.Text; using SnsDB; using EntityFramework.Extensions; using EntityFramework.Reflection; using System.Data.SqlClient; using System.Transactions; namespace SnsDAL { public partial class Repository { /// <summary> /// 创建一条记录 /// </summary> /// <typeparam name="T"></typeparam> /// <param name="model"></param> /// <returns></returns> public int Create<T>(T model) where T : class { int Result = 0; using (SnsDB_Intermodal db = new SnsDB_Intermodal()) { db.Set<T>().Add(model); db.Configuration.ValidateOnSaveEnabled = false ; Result = db.SaveChanges(); db.Configuration.ValidateOnSaveEnabled = true ; return Result; } } /// <summary> /// 根据主键修改实体的全部信息 /// </summary> /// <typeparam name="T"></typeparam> /// <param name="model"></param> /// <returns></returns> public int Update<T>(T model) where T : class { int Result = 0; using (SnsDB_Intermodal db = new SnsDB_Intermodal()) { if (db.Entry<T>(model).State == EntityState.Detached) { db.Set<T>().Attach(model); db.Entry<T>(model).State = EntityState.Modified; } db.Configuration.ValidateOnSaveEnabled = false ; Result = db.SaveChanges(); db.Configuration.ValidateOnSaveEnabled = true ; return Result; } } /// <summary> /// 只删除一条记录 /// </summary> /// <typeparam name="T"></typeparam> /// <param name="ids"></param> public int Delete<T>(Expression<Func<T, bool >> express) where T : class { using (SnsDB_Intermodal db = new SnsDB_Intermodal()) { T model = db.Set<T>().SingleOrDefault(express); db.Set<T>().Remove(model); return db.SaveChanges(); } } /// <summary> /// 根据条件获取一个实体 /// </summary> /// <typeparam name="T"></typeparam> /// <param name="express"></param> /// <returns></returns> public T GetModel<T>(Expression<Func<T, bool >> express) where T : class { using (SnsDB_Intermodal db = new SnsDB_Intermodal()) { T model = db.Set<T>().SingleOrDefault(express); return model; } } /// <summary> /// 根据条件获取列表 /// </summary> /// <typeparam name="T"></typeparam> /// <param name="express"></param> /// <returns></returns> public IEnumerable<T> GetList<T>(Expression<Func<T, bool >> express) where T : class { using (SnsDB_Intermodal db = new SnsDB_Intermodal()) { return db.Set<T>().Where(express).ToList(); } } /// <summary> /// 获取列表 /// </summary> /// <typeparam name="T"></typeparam> /// <returns></returns> public IEnumerable<T> GetList<T>() where T : class { using (SnsDB_Intermodal db = new SnsDB_Intermodal()) { return db.Set<T>().ToList(); } } /// <summary> /// 批量删除 /// </summary> /// <typeparam name="T"></typeparam> /// <param name="express"></param> /// <returns></returns> public int DeleteRange<T>(Expression<Func<T, bool >> express) where T : class { int Result = 0; using (SnsDB_Intermodal db = new SnsDB_Intermodal()) { db.Set<T>().Where(express).Delete(); db.Configuration.ValidateOnSaveEnabled = false ; Result = db.SaveChanges(); db.Configuration.ValidateOnSaveEnabled = true ; } return Result; } /// <summary> /// 批量添加 /// </summary> /// <typeparam name="T"></typeparam> /// <param name="List"></param> /// <returns></returns> public int AddRange<T>(IList<T> List) where T : class { int Result = 0; using (SnsDB_Intermodal db = new SnsDB_Intermodal()) { db.Set<T>().AddRange(List); db.Configuration.ValidateOnSaveEnabled = false ; Result = db.SaveChanges(); db.Configuration.ValidateOnSaveEnabled = true ; } return Result; } /// <summary> /// 批量修改 例:xx.update(p=>p.id==1,p=>new xx{p.name="修改"}); /// </summary> /// <typeparam name="T"></typeparam> /// <param name="where">条件</param> /// <param name="updateExpression">修改的内容</param> /// <returns></returns> public int UpdateRange<T>(Expression<Func<T, bool >> where , Expression<Func<T, T>> updateExpression) where T : class { int Result = 0; using (SnsDB_Intermodal db = new SnsDB_Intermodal()) { using (TransactionScope Transaction = new TransactionScope()) { db.Configuration.ValidateOnSaveEnabled = false ; db.Set<T>().Update( where , updateExpression); db.Configuration.ValidateOnSaveEnabled = true ; Transaction.Complete(); Result = 1; } } return Result; } /// <summary> /// 执行一条sql返回list /// </summary> /// <typeparam name="T">一般为ViewModel</typeparam> /// <param name="strsql"></param> /// <returns></returns> public IEnumerable<T> GetList<T>( string strsql) where T: class { using (SnsDB_Intermodal db = new SnsDB_Intermodal()) { return db.Database.SqlQuery<T>(strsql); } } /// <summary> /// 执行一条sql返回list /// </summary> /// <typeparam name="T"></typeparam> /// <param name="strsql">一般为ViewModel</param> /// <param name="paras">参数</param> /// <returns></returns> public IEnumerable<T> GetList<T>( string strsql, SqlParameter[] paras) where T : class { using (SnsDB_Intermodal db = new SnsDB_Intermodal()) { return db.Database.SqlQuery<T>(strsql, paras); } } /// <summary> /// 执行一条sql返回一个对象 /// </summary> /// <typeparam name="T"></typeparam> /// <param name="strsql"></param> /// <returns></returns> public T GetList<T>( string strsql) where T : class { using (SnsDB_Intermodal db = new SnsDB_Intermodal()) { return db.Database.SqlQuery<T>(strsql).Cast<T>().First(); } } /// <summary> /// 执行一条sql返回一个对象 /// </summary> /// <typeparam name="T"></typeparam> /// <param name="strsql"></param> /// <param name="paras">参数</param> /// <returns></returns> public T GetList<T>( string strsql,SqlParameter[] paras) where T : class { using (SnsDB_Intermodal db = new SnsDB_Intermodal()) { return db.Database.SqlQuery<T>(strsql,paras).Cast<T>().First(); } } /// <summary> /// 执行一条sql,一般为添加或修改或删除操作 /// </summary> /// <param name="strsql"></param> /// <returns>受影响的行数</returns> public int ExecuteSqlCommand( string strsql) { using (SnsDB_Intermodal db = new SnsDB_Intermodal()) { return db.Database.ExecuteSqlCommand(strsql); } } /// <summary> /// 执行一条sql,一般为添加或修改或删除操作 /// </summary> /// <param name="strsql"></param> /// <param name="paras">参数</param> /// <returns></returns> public int ExecuteSqlCommand( string strsql,SqlParameter[] paras) { using (SnsDB_Intermodal db = new SnsDB_Intermodal()) { return db.Database.ExecuteSqlCommand(strsql,paras); } } } } |
小人技术不才,以上仅提供参考。还希望大神多多指点。
再次推荐一个 ASP.NET MVC群 171560784
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。