What’s the difference b/w select and select new in linq.
var SelectNew = from L1 in liStudent select new { L1.Name, L1.ID };
var SelectNew2 = from L2 in liStudent select L2;
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Your first one,
SelectNewis returning an enumerable of anonymous types with two properties,NameandID, whereasSelectNew2is returning an enumerable ofiiStudententities. You’d use the first instance when you need to return a subset of the data available in the entity/model.