EntityDataSource 控件和 SELECT TOP(N)

发布于 2024-10-19 08:14:49 字数 533 浏览 0 评论 0原文

我使用 asp.net 4 和 EF。

我有一个 EntityDataSource,我只想从我的数据库中选择前 10 条记录,示例 SELECT TOP(10)。

这是我的代码,我该怎么做?谢谢

<asp:EntityDataSource ID="uxEntityDataSourceEndingSponsoredContents" runat="server"
    ConnectionString="name=CmsConnectionStringEntityDataModel" 
    DefaultContainerName="CmsConnectionStringEntityDataModel" EntitySetName="CmsSponsoredContents"
    OrderBy="it.EffectiveEndDate ASC" EnableFlattening="False" CommandText="" 
    EntityTypeFilter="">
</asp:EntityDataSource>

i use asp.net 4 and EF.

I have a EntityDataSource and I would like select only the TOP 10 records from my DataBase, Example SELECT TOP(10).

Here my code, how can I do it? Thanks

<asp:EntityDataSource ID="uxEntityDataSourceEndingSponsoredContents" runat="server"
    ConnectionString="name=CmsConnectionStringEntityDataModel" 
    DefaultContainerName="CmsConnectionStringEntityDataModel" EntitySetName="CmsSponsoredContents"
    OrderBy="it.EffectiveEndDate ASC" EnableFlattening="False" CommandText="" 
    EntityTypeFilter="">
</asp:EntityDataSource>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

疯狂的代价 2024-10-26 08:14:49

你必须使用顶部(n)

Select="top(10) Name, Address"

You have to use top(n)

Select="top(10) Name, Address"
混吃等死 2024-10-26 08:14:49

Select="top(10) it.Name, it.Address"

在我的例子中,必须使用“it”作为别名。

Select="top(10) it.Name, it.Address"

in my case, it must be used 'it' as alias.

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