count()
我在我的程序中多次使用一个函数:
var housewith2floor = from qry in houses
where qry.floor == 2
select qry;
var counthousewith2floor = housewith2floor.count();
var housecolorwhite = from qry in house
where qry.color == "white"
select qry;
var countwhotehouse = housecolorwhite.count();
每种count
方法都需要很长时间才能执行。该数据库有 200 万行数据。我已经为 floor 列和 color 列放置了一个非聚集索引,但是计数仍然需要太长时间。有没有其他方法可以让我的计数运行得更快?