コード例 #1
0
 public IEnumerable <string> ProvidersNames(int groupId)
 {
     return(providerRepository
            .Actives()
            .Where(t => t.GroupId == groupId)
            .Select(t => t.Name));
 }