在 mysql 中,
select distinct(trim(containerType)) from productIn where containerType <> '' group by containerNo
如何使用 Lambda 表达该查询?
前任)
List<string> containerTypes = new List<string>();
containerTypes = productInRepository.GroupBy(x=> x.containerNo).Select(?????).ToList();