How can I pass the result of the linq to a textbox?
I need to access the column data something like this:Code:string search = txtSearchPO.Text; IPSBLL.TransactionInfo dbInfo = new IPSBLL.TransactionInfo(); var q = from info in dbInfo.GetTransactionInfo() where info.PONumber == search select info; txtPONumber.Text = q;
How can I do that in LINQ?Code:DataTable.Rows[index].columnName




Reply With Quote