计算数据源中的记录 - C#
如果搜索在数据源中没有返回任何记录,我想在屏幕上显示一条消息,只是不确定语法,
例如
if(gridview.datasource.[number of records] = 0)
{
do a thing
}
或评估数据源后面的 linq 查询,
有什么想法吗?
谢谢
I want to show a message on the screen if a search returns no records in a datasource, just not sure of the syntax,
eg
if(gridview.datasource.[number of records] = 0)
{
do a thing
}
or evaluate the linq query behind the datasource,
any ideas?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 gridview 的 Rows 集合。
You can use the Rows collection of the gridview.
您需要将数据源转换为其绑定的正确类型。仅使用行并不总能提供数据源中的总计数。看这个例子:
在后面的代码中:
因此您可以看到,由于启用了分页,因此只计算行数仅返回“3”。这是当前页的行数。但是,转换数据源会为您提供原始数据源返回的计数。因此,只要您了解其中的区别,就可以使用其中任何一个。
You need to cast your datasource to the correct type that it is bound to. Just using rows will not always give you the total count in the datasource. Look at this example:
And in code behind:
So you can see that just counting the rows only returns '3', since paging is enabled. This is the count of the current page of rows. However, casting the datasource gives you the count returned by the original datasource. So you can use either so long as you understand the difference.