gpt4 book ai didi

c# - 事件没有为 EntityDataSource 控件采用正确的命名空间

转载 作者:行者123 更新时间:2023-11-30 22:06:31 25 4
gpt4 key购买 nike

我正在从 EF5 升级到 EF6,为此我正在使用新发布的 EntityDataSource 控件 http://blogs.msdn.com/b/webdev/archive/2014/02/28/announcing-the-release-of-dynamic-data-provider-and-entitydatasource-control-for-entity-framework-6.aspx在我的网络应用程序中。

我面临的问题是将实体数据源控件更改为:

<ef:EntityDataSourceID="GridDataSource"runat="server"EnableDelete="true"/>

所有事件都采用了不正确的旧命名空间“System.web.UI.WebControls”,而不是正确的命名空间“Microsoft.AspNet.EntityDataSource”。

有很多地方我必须编辑它,但我认为它应该由控件自动处理。

谁能帮我看看这是怎么回事?

最佳答案

使用像这样的 using 指令引用命名空间:

using EntityDataSource = Microsoft.AspNet.EntityDataSource.EntityDataSource;
using EntityDataSourceSelectingEventArgs = Microsoft.AspNet.EntityDataSource.EntityDataSourceSelectingEventArgs;
using EntityDataSourceChangingEventArgs = Microsoft.AspNet.EntityDataSource.EntityDataSourceChangingEventArgs;
using EntityDataSourceChangedEventArgs = Microsoft.AspNet.EntityDataSource.EntityDataSourceChangedEventArgs;
using EntityDataSourceContextCreatingEventArgs = Microsoft.AspNet.EntityDataSource.EntityDataSourceContextCreatingEventArgs;

关于c# - 事件没有为 EntityDataSource 控件采用正确的命名空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23608108/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com