1

我已经尝试了一段时间,我真的不明白。我收到错误“无法将类型 'void' 隐式转换为 'string'” 我已经尝试了字符串、int、nothing、void、public、static 的多种变体,不,我真的不明白。

我想从我的数据库中获取一个值,尽管我的 DAL 和 BLL,我的代码看起来像这样。

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        Repeater1.DataSource = BLL.getGames();
        Repeater1.DataBind();
        var culture = CultureInfo.GetCultureInfo("sv-SE");
        var dateTimeInfo = DateTimeFormatInfo.GetInstance(culture);
        var dateTime = DateTime.Today;
        int weekNumber = culture.Calendar.GetWeekOfYear(dateTime, dateTimeInfo.CalendarWeekRule, dateTimeInfo.FirstDayOfWeek);
        string mroundY = dateTime.Year.ToString();
        string mroundW = weekNumber.ToString();
        string mrounddate = mroundY + mroundW;

        string mround = BLL.getMroundGames(mrounddate);  <-- Here's the error

    }
    protected void Repeater1_ItemCommand(object source, RepeaterCommandEventArgs e)
    {

    }
}

我的 BLL 看起来像这样;

    public class BLL
{
    public static void getMroundGames(string mrounddate)
    {
        SqlCommand getMroundGames = new SqlCommand("SELECT mround FROM gameTB where mround = @mrounddate");
        DAL.ExecuteNonQuery(getMroundGames);
     }
}

也试过这个;

public class BLL
{
    public static DataTable getMroundGames(string mrounddate)
    {
        SqlCommand getMroundGames = new SqlCommand("SELECT mround FROM gameTB where mround = @mrounddate");
        getMroundGames.Parameters.Add("@mrounddate", SqlDbType.VarChar, 10).Value = mrounddate;
        return DAL.GetData(getMroundGames);
    }
}

最后我的 DAL 看起来像这样;

public class DAL
    {
    public static SqlConnection GetConnection()
        {
            SqlConnection conn = new
            SqlConnection(ConfigurationManager.ConnectionStrings["tiptopConnectionString"].ConnectionString);
            conn.Open();
            return conn;
        }

    public static DataTable GetData(SqlCommand command)
    {
        try
        {
            using (SqlConnection conn = GetConnection())
            {
                using (DataSet ds = new DataSet())
                {
                    using (SqlDataAdapter da = new SqlDataAdapter())
                    {
                        da.SelectCommand = command;
                        da.SelectCommand.Connection = conn;
                        da.Fill(ds);
                        return ds.Tables[0];
                    }
                }
            }
        }
        catch (Exception err)
        {
            throw new ApplicationException(string.Format("Felmeddelande:{0}", err.Message));
        }
    }

    public static object ExecuteScalar(SqlCommand command)
    {
        using (SqlConnection conn = GetConnection())
        {
            command.Connection = conn;
            object result = command.ExecuteScalar();
            return result;
        }
    }

    public static void ExecuteNonQuery(SqlCommand command)
    {
        using (SqlConnection conn = GetConnection())
        {
            command.Connection = conn;
            command.ExecuteNonQuery();
        }
    }

}

从哪里开始?

4

2 回答 2

10

对此的签名是错误的;

public static void getMroundGames(string mrounddate)

您需要将其更改为类似于 ;

public static string getMroundGames(string mrounddate)

从 DAL 中检索字符串值并相应地返回给使用者。

var dt = Dal.GetData();
return (string)dt.Rows[0]["field"];

但是,老实说,我不会将数据表从您的 DAL 传递到您的 BLL。我会直接返回字符串或引入 DTO,然后通过 BLL 从 DAL 填充它,然后返回给消费者。

于 2013-03-06T23:31:19.413 回答
2

您需要将返回类型的字符串添加到 getMroundGameas(string mrounddate)。

目前尚不清楚 DAL 是什么类型的对象,但您也应该使用 ExecuteReader 方法, http: //msdn.microsoft.com/en-us/library/bb344397.aspx 而不是 ExecuteNonQuery。这将返回一个 Reader,可以查询 select 语句返回的值。

最后,您应该返回该值。

于 2013-03-06T23:40:47.920 回答