计算数据源中的记录 - C#

发布于 2024-11-08 16:21:45 字数 201 浏览 0 评论 0原文

如果搜索在数据源中没有返回任何记录,我想在屏幕上显示一条消息,只是不确定语法,

例如

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

雨落星ぅ辰 2024-11-15 16:21:45

您可以使用 gridview 的 Rows 集合。

if(gridview.Rows.Count == 0)
{
 do a thing
}

You can use the Rows collection of the gridview.

if(gridview.Rows.Count == 0)
{
 do a thing
}
兲鉂ぱ嘚淚 2024-11-15 16:21:45

您需要将数据源转换为其绑定的正确类型。仅使用行并不总能提供数据源中的总计数。看这个例子:

<asp:GridView ID="GridView1" runat="server" 
    AllowPaging="true" PageSize="3">
</asp:GridView>

在后面的代码中:

var fruit = new List<string>() 
    { "banana", "orange", "apple", "strawberry", "melon", "grape" }

GridView1.DataSource = fruit;
GridView1.DataBind();

int rowsCount = GridView1.Rows.Count; // rowsCount = 3

int dataCount = ((List<string>)GridView1.DataSource).Count; // dataCount = 6

因此您可以看到,由于启用了分页,因此只计算行数仅返回“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:

<asp:GridView ID="GridView1" runat="server" 
    AllowPaging="true" PageSize="3">
</asp:GridView>

And in code behind:

var fruit = new List<string>() 
    { "banana", "orange", "apple", "strawberry", "melon", "grape" }

GridView1.DataSource = fruit;
GridView1.DataBind();

int rowsCount = GridView1.Rows.Count; // rowsCount = 3

int dataCount = ((List<string>)GridView1.DataSource).Count; // dataCount = 6

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文