我在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;
}
}