嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
1、NFine是一套基于ASP.NET MVC EF6 Bootstrap开发出来的框架
可以帮助你解决C#以及.NET项目多数的重复工作,让开发人员远离加班
2、使用ApacheLicense2.0协议,采用主流框架,简单易学,容易上手,
学习成本较低。可完全实现二次开发,基本满足多数项目再次开发的需求
3、可以帮助解决.NET项目多数的重复工作,让开发更多关注业务逻辑
既能迅速提高开发效率,帮助企业节省人力成本,同时又不失灵活性
4、支持SQLServer、Mysql、Oracle、SQLite、Access等多数据库类型
模块化设计,层次结构清晰。内置一系列企业信息管理的基础功能
5、操作权限控制精密细致,对所有管理链接都进行权限验证,
可控制到导航菜单、功能按钮
6、数据权限(精细化数据权限控制、控制到行级、列表级、表单字段级,
实现不同人看不同数据,不同人对同一个页面操作不同字段
7、提高开发效率及质量。常用类封装,日志、缓存、验证、字典、文件、
邮件、Excel。等等,目前兼容浏览器(IE8 、Chrome、Firefox、360浏览器等)
8、适用范围:可以开发OA、ERP、BPM、CRM、WMS、TMS、MIS、BI、
电商平台后台、物流管理系统、快递管理系统、教务管理系统等各类管理软件
public interface IRepositoryBase : IDisposable
{
IRepositoryBase BeginTrans();
int Commit();
int Insert<TEntity>(TEntity entity) where TEntity : class;
int Insert<TEntity>(List<TEntity> entitys) where TEntity : class;
int Update<TEntity>(TEntity entity) where TEntity : class;
int Delete<TEntity>(TEntity entity) where TEntity : class;
int Delete<TEntity>(Expression<Func<TEntity, bool>> predicate) where TEntity : class;
TEntity FindEntity<TEntity>(object keyValue) where TEntity : class;
TEntity FindEntity<TEntity>(Expression<Func<TEntity, bool>> predicate) where TEntity : class;
IQueryable<TEntity> IQueryable<TEntity>() where TEntity : class;
IQueryable<TEntity> IQueryable<TEntity>(Expression<Func<TEntity, bool>> predicate) where TEntity : class;
List<TEntity> FindList<TEntity>(string strSql) where TEntity : class;
List<TEntity> FindList<TEntity>(string strSql, DbParameter[] dbParameter) where TEntity : class;
List<TEntity> FindList<TEntity>(Pagination pagination) where TEntity : class,new();
List<TEntity> FindList<TEntity>(Expression<Func<TEntity, bool>> predicate, Pagination pagination) where TEntity : class,new();
}