我在 mysql "Customers" 中创建了一个表,并创建了一个 devart linq 连接模型。
当我想使用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;
}
}