public static DataTable SelectSome(string DtoName, string table, string strWhere) { IMapping Mapping = MappingFactory.CreatMapping(DtoName); DataTable dt = CommonDal.GetSomeByWhere(table, strWhere); return(dt); }