linq数据类中的空引用对象

时间:2013-03-02 03:02:44

标签: c# asp.net mysql linq

我在mysql" Customers"中创建了一个表,我创建了一个devart linq connect模型。

当我想使用linq检索第一行时,它会提供null reference exception

  

对象引用未设置为对象的实例。

我的代码是:

protected void Page_Load(object sender, EventArgs e)
{
    using (ShoppingDataContext data = new ShoppingDataContext())
    {              
        Customer Mycustomer = data.Customers.First();
        Labelshow.Text = Mycustomer.CustomerLastname;
    }
}

0 个答案:

没有答案