Hi there,
Been succcesfully adding records using Linq2Sql with the linq2sql genereated classes, works great..
But i need to now select the records, i can't seem to figure this out
This is how i am adding records - reservation is a generated linq2sql class
TestDataContext db = new TestDataContext();
db.Reservations.InsertOnSubmit(reservation);
db.SubmitChanges();
So i wanted to pass in a reservation number (which is a field) a retrieve a populated Reservation class
Can anyone help?
Thanks