用asp.net寻找完美的正方形

时间:2018-10-22 07:24:01

标签: algorithm

我是一个初学者,仍然在学习我有一个问题,希望使用asp.net查找100和1000(包括两端)的完美平方,输出应以逗号分隔,请帮助我。

1 个答案:

答案 0 :(得分:0)

var result = myDbContext.Listings
   .Where(listing => ...)                   // only if you don't want all listings
   .Select(listing => new
   {
        Id = listing.Id,
        Name = list.Name,

        Categories = listing.Categories
            .Where(category => category.Enabled) // keep only the enabled categories
            .Select(category => new
            {
                Id = category.Id,
                Name = category.Name,
                ...
            })
            .ToList(),
       })
    // this will give you also the Listings that have only disabled categories,
    // so listings that have any categories left. If you don't want them:
    .Where(listing => listing.Categories.Any());