EntityDataSource 中 e.ReturnValue 的等效项
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以订阅
Inserted
事件,该事件是一个EventHandler
。EntityDataSourceChangedEventArgs
实例有一个 Entity 属性,表示新插入的实体。You can subscribe to the
Inserted
event, which is anEventHandler<EntityDataSourceChangedEventArgs>
.The
EntityDataSourceChangedEventArgs
instance has an Entity property, representing the newly inserted entity.