List<Models.ViewModels.GetCVList_ViewModel> list = _context.Can_CVs
.Where(x => x.isDeleted == false)
.Select(x => new GetCVList_ViewModel { x.Title, x.CVID, x.CityID, x.EditDate, x.AddDate })
.ToList();
this code I'm using the CV tables specific column to list. but column types are different so I can't
how can I do? thanks