C# ibatis 测试

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;
        }
    }
}

猜你喜欢

转载自blog.csdn.net/Yao__Shun__Yu/article/details/40181505