DAL层用的微软SQLHelperBAL中 有个方法public static DataSet GetCustom()
        {
            string connString =DAL.SqlHelper.GetConnSting();
            string sql = "select * from Custom";
            DataSet ds = DAL.SqlHelper.ExecuteDataset(connString, CommandType.Text, sql);            return ds;
        }UI层 dvwCustom.DataSource = BAL.Custom.GetCustom(); 可是dvwCustom这个datagrid为什么没有显示数据呢?也没有报错在sqlserver里用查询语句查是有数据的