我有以下内容从未实现的 Azure 表存储返回一个集合Skip
。返回的行数约为 500。
ICollection<City> a = cityService.Get("0001I");
我想做的是能够根据一个参数返回以下范围:
records 1-100 passing in 0 as an argument to a LINQ expression
records 101-200 passing in 100 as an argument to a LINQ expression
records 201-300 passing in 200 as an argument to a LINQ expression
records 301-400 passing in 300 as an argument to a LINQ expression
etc
有什么方法可以添加到上面并使用链接来返回这些记录范围: