/// <summary>
        /// 初始化数据
        /// </summary>
        void InitTableData()
        {
            RelyTable rely = new RelyTable();
            //添加忽略项
            string sql = rely.GetInitDBRelactiveSql();

            CommonRepository.ExtInsert(sql, SqlConnString, rely);
        }
        public IList <RelyTable> QueryAll()
        {
            InitTableData();
            RelyTable rely = new RelyTable();
            string    sql  = rely.GetSampleQuerySql();

            return(CommonRepository.QueryModelList <RelyTable>(sql, null, SqlConnString, 0, int.MaxValue));
        }
 public bool Edit(RelyTable entity)
 {
     throw new NotImplementedException();
 }