SQL データベース テーブルの上位 1 つの値を にバインドしようとしていますGridView
が、表示されません。
private void btnSubmit_Click(object sender, EventArgs e)
{
WireLine_Tracking_AssetsDataContext doc = new WireLine_Tracking_AssetsDataContext();
if (txtCustomerInvoiceNo.Text != string.Empty )
{
var query = (from b in doc.WireLine_Movements
where b.CustomerInvoiceNo.Contains(txtCustomerInvoiceNo.Text.Trim())
orderby b.ID descending
select new { b.AssetCode, b.CustomerInvoiceNo, b.CurrentLocation,
b.FromLocation}).FirstOrDefault();
dgvresult.DataSource = query;
}
}