How to handle error “method 'First' can only be used as a final query operation”

后端 未结 2 1118
遇见更好的自我
遇见更好的自我 2021-02-12 11:17

I want to retrieve data from the database in different tables by relation, but I get an error that I don\'t know how to handle.

int customer_id = int.Parse(this.         


        
2条回答
  •  感情败类
    2021-02-12 12:01

    The error is stating that you should use FirstOrDefault() instead of First()

    Not sure what the question is

    int customer_id = int.Parse(this.comboBoxnamecustomer.SelectedValue.ToString());
    
    a = (from c in db.Invoices where c.CustomerID == customer_id select new { 
             customerName=c.Customer.Name,ProductName=c.InvoiceItems.Where(x=> x.InvoiceId==c.InvoiceId).FirstOrDefault().Product.ProductsName.Name
            }).ToList();
            dataGridViekryar.DataSource = a;
    

    Of course this will throw an error if there isn't any items from your query (NullReferenceException)

提交回复
热议问题