示例#1
0
        public DbList(string dbid)
        {
            _dbId   = dbid;
            _mapper = DbObjectMapper <T> .Get();

            Table = _mapper.TableName;
        }
示例#2
0
 public static DbObjectMapper <T> Get()
 {
     return(_instance ?? (_instance = new DbObjectMapper <T>()));
 }