LINQ数据绑定到GridView和RowDataBound的麻烦

时间:2010-02-06 12:29:34

标签: c# linq-to-sql data-binding gridview anonymous-types

问候所有人,

我正在使用VS 2008重新设计我的个人网站,并选择使用LINQ来创建数据访问层。我的网站的一部分将是一个小应用程序,以帮助更好地管理我的预算。我的第一个LINQ查询确实成功执行并显示在GridView中,但当我尝试使用RowDataBound事件处理结果并稍微改进它时,我收到错误:

  

找不到类型或命名空间名称“var”(您是否缺少using指令或程序集引用?)

这个有趣的部分是,如果我只是尝试在同一个文件中的任何其他位置放入var s = "s";,我也会得到同样的错误。如果我转到Web项目中的其他文件,var s = "s";编译正常。

这是LINQ查询调用:

public static IQueryable pubGetRecentTransactions(int param_accountid)
{
    clsDataContext db;

    db = new clsDataContext();

    var query = from d in db.tblMoneyTransactions
                join p in db.tblMoneyTransactions on d.iParentTransID equals p.iTransID into dp
                from p in dp.DefaultIfEmpty()
                where d.iAccountID == param_accountid
                orderby d.dtTransDate descending, d.iTransID ascending
                select new
                {
                    d.iTransID,
                    d.dtTransDate,
                    sTransDesc = p != null ? p.sTransDesc : d.sTransDesc,
                    d.sTransMemo,
                    d.mTransAmt,
                    d.iCheckNum,
                    d.iParentTransID,
                    d.iReconciled,
                    d.bIsTransfer
                };

    return query;
}

protected void Page_Load(object sender, EventArgs e)
{
    if (!this.IsPostBack)
    {
        this.prvLoadData();
    }
}

internal void prvLoadData()
{
    prvCtlGridTransactions.DataSource = clsMoneyTransactions.pubGetRecentTransactions(2);

    prvCtlGridTransactions.DataBind();
}


protected void prvCtlGridTransactions_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        var datarow = e.Row.DataItem;
        var s = "s";

        e.Row.Cells[0].Text = datarow.dtTransDate.ToShortDateString();
        e.Row.Cells[1].Text = datarow.sTransDesc;
        e.Row.Cells[2].Text = datarow.mTransAmt.ToString("c");
        e.Row.Cells[3].Text = datarow.iReconciled.ToString();
    }//end if
}//end RowDataBound

到目前为止我的Google搜索还没有找到一个好的答案,所以我把它转交给了这个值得信赖的社区。感谢您抽出时间帮助我。

1 个答案:

答案 0 :(得分:0)

对我来说似乎很奇怪,var是一个语言关键字,但在某些情况下,编译器会将其视为一种类型。既然你已在var中成功使用pubGetRecentTransactions(),我认为你正在编译.NET 3.5,对吗?

VS有时会做很奇怪的事情。您是否尝试重新启动VS并在之后进行完全重建?