I am trying to retrieve data from list using LINQ, and have SPMETAl ran for the latest list version. All data from the list is successfully retrieved besides created by, created, modified by, modified. The SPMETAl returned a CS file named marketing and below is the code for my LINQ data retrieval in C#
MarketingDataContext newMarket = new MarketingDataContext("http://strikychoong- lt/marketing");
EntityList<QuotationItem> Quotation = newMarket.GetList<QuotationItem>("Quotation");
searchResult = from searching in Quotation
where searching.Title.Equals(TextBox1.Text)
select searching;
The auto-complete for searching. did show every attributes in the lists besides the 4 user data above.
How can I actually retrieve these 4 data (created by, created, modified by, modified)?
I am very new to SharePoint and LINQ.