コード例 #1
0
ファイル: Repository.Countries.cs プロジェクト: ifcwebapp/BES
 public IList<Model.Country> GetCountries()
 {
     var db = new DatabaseRepository();
     return
         db.GetCountries()
             .Select(
                 c =>
                     new Model.Country
                     {
                         Code = c.CountryCode,
                         Name = c.CountryAlias ?? c.CountryName,
                         IsHighIncome = c.IncomeId == 3 || c.IncomeId == 5
                     })
             .OrderBy(c => c.IsHighIncome)
             .ThenBy(c => c.Name)
             .ToList();
 }