如何使 linq toEntity 或 dbcontext 在插入语句中使用输出?
输出在此处定义 我可以利用输出还是被迫使用 linq toEntity 或 dbcontext 将数据输入到两个不同的表中?
Output is defined here
Can I utilize output or am I forced to enter the data into two different tables using linq to entities or dbcontext?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
EF 不支持此功能。如果要使用
OUTPUT
子句,您必须自己直接执行SQL,或者直接通过ADO.NET或通过Database.ExecuteSqlCommand
执行SQL。This is not supported by EF. If you want to use
OUTPUT
clause you must execute SQL directly at your own or through ADO.NET directly or trhoughDatabase.ExecuteSqlCommand
.