Hi,
I have business class like this:
Class customer
{
//Properties for Name and customerID.
//Fields
}
From the LINQ I am getting the result like this:
var s = from c in customers where customerID =1 select c.CustomerID, c.Name;
Now I want to populate the business class customer object with the values from s.
How to do this?
How LINQ is used in N-tier architecture.
thanks in advance