當(dāng)前位置:首頁 > IT技術(shù) > Windows編程 > 正文

C# ibatis 測試
2021-08-07 12:46:42

using System;
using System.Collections.Generic;
using System.Text;
using IBatisNet.DataMapper;

using Com.Chinasofti.PPAS.Model;

namespace Com.Chinasofti.PPAS.Dao
{

    public class DiaryDao
    {

        private ISqlMapper sqlMapper;

        public ISqlMapper SqlMapper
        {
            get { return sqlMapper; }
            set { sqlMapper = value; }
        }

        /// <summary>
        /// get all diary
        /// </summary>
        /// <returns></returns>
        public IList<DiaryBean> GetAllDiary()
        {
            IList<DiaryBean> list = null;
            list = sqlMapper.QueryForList<DiaryBean>("SelectAllDiary", null);
            return list;
        }
    }
}

本文摘自 :https://blog.51cto.com/u

開通會員,享受整站包年服務(wù)立即開通 >