C#ORM框架Dapper封装

接口:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;


namespace MVC.Interface
{
    public interface IBaseRepository
    {
        #region  成员方法
        ///


        /// 增加一条数据
        ///

        bool Add(T model);
        ///
        /// 根据ID删除一条数据
        ///

        bool Delete(int Id);
        ///
        /// 根据条件删除数据
        ///

        ///
        ///
        ///
        bool DeleteList(string strWhere, object parameters);
        ///
        /// 更新一条数据
        ///

        bool Update(T model);
        ///
        /// 根据ID获取实体对象
        ///

        T GetModel(int Id);
        /////
        ///// 根据条件获取实体对象
        /////

        //T GetModel(string strWhere, object parameters);
        ///
        /// 根据条件获取实体对象集合
        ///

        ///
        ///
        ///
        IEnumerable GetModelList(string strWhere, object parameters);
        ///
        /// 分页查询
        ///

        /// 页码
        /// 每页行数
        /// where条件
        /// Orde by排序
        /// parameters参数
        ///
        IEnumerable GetListPage(int pageNum, int rowsNum, string strWhere, string orderBy, object parameters);
        #endregion
    }

}

实现:

using Dapper;
using MVC.Common;
using MVC.Interface;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;


namespace MVC.BLL
{
    public class BaseRepository : IBaseRepository
    {
        private IDbConnection _connection;
        public bool Add(T model)
        {
            int? result;
             using (_connection= DbClient.OpenConnection())
            {
                    result= _connection.Insert(model);
                if (result > 0)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
        }


        public bool Delete(int Id)
        {
            int? result;
            using (_connection = DbClient.OpenConnection())
            {
                result =_connection.Delete(Id);
            }
            if (result > 0)
            {
                return true;
            }
            else
            {
                return false;
            }
        }


        public bool DeleteList(string strWhere, object parameters)
        {
            int? result;
            using (_connection = DbClient.OpenConnection())
            {
                result =_connection.DeleteList(strWhere,parameters);
            }
            if (result > 0)
            {
                return true;
            }
            else
            {
                return false;
            }
        }


        public IEnumerable GetListPage(int pageNum, int rowsNum, string strWhere, string orderBy, object parameters)
        {
            using (_connection = DbClient.OpenConnection())
            {
                return _connection.GetListPaged(pageNum, rowsNum, strWhere, orderBy, parameters); ;
            }
        }


        public T GetModel(int Id)
        {
            using (_connection = DbClient.OpenConnection())
            {
                return _connection.Get(Id);
            }
        }


        public IEnumerable GetModelList(string strWhere, object parameters)
        {
            using (_connection = DbClient.OpenConnection())
            {
                return _connection.GetList(strWhere, parameters);
            }
        }


        public bool Update(T model)
        {
            int? result;
            using (_connection = DbClient.OpenConnection())
            {
                result =_connection.Update(model);
            }
            if (result > 0)
            {
                return true;
            }
            else
            {
                return false;
            }
        }
    }
}

你可能感兴趣的:(C#ORM框架Dapper封装)