1、 数据访问层的构架。
通过ORM框架做数据库映射,数据实体组件.edmx实现。
然后可以调用基类,对数据执行增、删、改、查、分页等操作,不必写过多的代码;
例:
using System.Data.Entity;
using HENANLUHENG.Framework.DataBase;
using HENANLUHENG.Framework.EntityRepository;
namespace HENANLUHENG.Service.Base.SV
{
public class AccountService : EntityRepositoryBase<DbContext, base_account>
{
public AccountService(DbContext context)
{
base.Context = context;
IsOwnContext = false;
}