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

C# ibatis 測(cè)試
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

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