close

LINQ像下面寫法就會掛了

var Teams = db.Team.Where(a => a.tid == Session["tid"].ToString());

要改成

string tid = Session["tid"].ToString();

var Teams = db.Team.Where(a => a.tid == tid);

 

 

arrow
arrow
    創作者介紹
    創作者 蔡官宏 的頭像
    蔡官宏

    MVC5開發疑難雜病論

    蔡官宏 發表在 痞客邦 留言(0) 人氣()