如何使用过滤器从 EntityDataSource 填充可更新的 FormView

发布于 2024-07-25 15:01:11 字数 287 浏览 11 评论 0原文

我正在尝试创建一个会员页面来更新帐户详细信息。 我想用成员的数据填充表单,但我不知道如何在 EntityDataSource 上设置过滤器来限制查询。

当我根据成员 ID 设置 select 语句时,出现错误

如果启用 EnableDelete、EnableInsert 或 EnableUpdate,则无法设置 Select。

我认为这是因为您无法更新投影或一些东西,但是这附近还有什么吗?

或者我是否必须在 Page_Load 中运行查询并自己填充表单?

I'm trying to create a member page for updating account details. I want to populate a form with the member's data, but I don't know how to set a filter on the EntityDataSource to limit the query.

When I set the select statement based on the member ID, I get the error

Select cannot be set if EnableDelete, EnableInsert, or EnableUpdate is enabled.

I think this is because you can't update a projection or something, but is there anyway around this?

Or do I have to run a query in Page_Load and populate the form myself?

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

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

发布评论

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

评论(1

夜巴黎 2024-08-01 15:01:11

不需要设置select,只需要设置where子句。

您可以执行如下操作:

<asp:EntityDataSource ID="MyDataSource" EntitySetName="Entity1" runat="server"
    ConnectionString="name=MyEntitiesConnString" EnableUpdate="true"
    DefaultContainerName="MyEntities" Where="it.MemberId= @MemberId" >
        <WhereParameters>
            <asp:QueryStringParameter DbType="Int32" Name="memberId" QueryStringField="memberid" />
        </WhereParameters>
</asp:EntityDataSource>

如果参数是通过查询字符串传入的。 还有其他几种内置参数类型。

There is no need to set the select, only the where clause.

You could do something like the following:

<asp:EntityDataSource ID="MyDataSource" EntitySetName="Entity1" runat="server"
    ConnectionString="name=MyEntitiesConnString" EnableUpdate="true"
    DefaultContainerName="MyEntities" Where="it.MemberId= @MemberId" >
        <WhereParameters>
            <asp:QueryStringParameter DbType="Int32" Name="memberId" QueryStringField="memberid" />
        </WhereParameters>
</asp:EntityDataSource>

If the parameter is passed in by querystring. there are several other built-int parameter types as well.

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