Answers for "Linq Select string fields concat as one fieldsub query in linq"

0

Linq Select string fields concat as one fieldsub query in linq

You need to name your anonymous members:
.Select( c => new {COURSE_ID = c.COURSE_ID, COURSE_TITLE = c.CIN + " " + c.COURSE_TITLE})
Posted by: Guest on February-23-2021

Browse Popular Code Answers by Language