Ramco Ramco

Ramco Ramco

  • 440
  • 3.4k
  • 520.1k

How to combine 2 fields in a linq

Sep 9 2022 2:45 PM

Hi

   In below linq query i want to return 2 fields . I want to combine CourseCode & Name as a single field.

Id,Coursecode_name

public List<TrainingModuleMaster> GetRecordDetailsByTypeId(Int32 ID)
        {
            try
            {
                List<TrainingModuleMaster> Result = (from t in context.TrainingModuleMasters
                                               where t.TrainingTypeID == ID
                                               select t).ToList();
                return Result;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }

Thanks


Answers (3)