实体框架 4 - 返回 Guid 的映射存储过程
有没有办法在实体框架 4 中映射返回 guid 标量的存储过程?我所看到的只是让它返回一个集合或一个 int 标量。
我的存储过程以 @id 结尾,
select @id
其中 @id 是我想要在代码中返回的 Guid。
Is there a way to map a stored proc in entity framework 4 that returns a guid scalar? All I see is to have it return a collection or an int scalar.
My stored proc ends with a
select @id
where @id is the Guid I want back in code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
否 - EF4 中的函数导入始终返回实现 IEnumerable 的集合。您可以让它返回一组 guid 标量 - 但在您的情况下,它只是一个包含一个对象的集合。这对你有用吗?
布莱恩
No - function imports in EF4 always return collections that implement IEnumerable. You can have it return a collection of guid scalars - but in your case, it would just be a collection with one object. Does that work for you?
Brian