I have 2 lists of string and I am merging them but selecting a specific column. I managed to get it, but I am sure there is a better way:
public List<string> GetAll()
{
var i = _iRepository.GetAll().Select(x => x.Name).ToList();
var a = _aRepository.GetAll().Select(x => x.Name);
i.AddRange(a);
return i;
}