作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有 OnSelected
的 EntityDataSource事件(完成查询后触发)。事件处理程序具有 EntityDataSourceSelectedEventArgs e
类型的事件参数.查询运行良好,没有错误,IEnumerable e.Results
包含 1 个对象(我可以通过非空的 foreach 循环运行)但是 e.TotalRowCount
返回 -1
.
有人知道这意味着什么以及什么信息TotalRowCount
实际上表示?如果不使用 TotalRowCount
,我如何确定选定对象的数量? ?
最佳答案
The TotalRowCount property of the EntityDataSourceSelectedEventArgs
object shows the total number of objects in all pages, regardless of the
values passed by the data-bound control for paging.
TotalRowCount is only retrieved if the data-bound
control needs it, such as if paging is enabled.
关于asp.net - EntityDataSource:TotalRowCount 返回 -1。那是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2366840/
我有一个带有 OnSelected 的 EntityDataSource事件(完成查询后触发)。事件处理程序具有 EntityDataSourceSelectedEventArgs e 类型的事件参数
我是一名优秀的程序员,十分优秀!