EntityDataSource 中 e.ReturnValue 的等效项

发布于 2024-12-22 17:25:35 字数 144 浏览 3 评论 0原文

我在 ASP.NET 应用程序中将 EntityDataSource 与 DetailsView 结合使用。我想在插入记录后获取标识列值。 ObjectDataSource 有 e.ReturnValue 属性 我想知道它在 EntityDataSource 中的等效属性?

I'm using EntityDataSource with DetailsView in my ASP.NET application. I want to get identity column value after inserting the record. ObjectDataSource has e.ReturnValue property I want to know its equivalent in EntityDataSource?

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

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

发布评论

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

评论(1

潜移默化 2024-12-29 17:25:35

您可以订阅 Inserted 事件,该事件是一个 EventHandler

EntityDataSourceChangedEventArgs 实例有一个 Entity 属性,表示新插入的实体。

void EntityDataSource1_Inserted(object sender, EntityDataSourceChangedEventArgs e) {
    YourEntityType newlyAdded = (YourEntityType)e.Entity;
    int newId = newlyAdded.Id;
}

You can subscribe to the Inserted event, which is an EventHandler<EntityDataSourceChangedEventArgs>.

The EntityDataSourceChangedEventArgs instance has an Entity property, representing the newly inserted entity.

void EntityDataSource1_Inserted(object sender, EntityDataSourceChangedEventArgs e) {
    YourEntityType newlyAdded = (YourEntityType)e.Entity;
    int newId = newlyAdded.Id;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文