有人能解释一下 Entity SQL 中的 REF、CREATEREF、DEREF、KEY 的作用吗?
我找不到有关这些运算符的良好文档。有人可以提供一些使用示例并解释他们的作用吗?
I can't find good documentation on these operators. Can someone provide some examples of use and explain what they do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Entity SQL 的 CREATEREF 参考:http://msdn.microsoft。 com/en-us/library/bb386880(v=VS.90)
它用于“制作对实体集中实体的引用”。您还可以从链接中找到 REF 和 DEREF 的参考。
对于 VS 2010,参考为: http://msdn .microsoft.com/en-us/library/bb386880(v=VS.100)
来自 MSDN 的示例:
使用实体框架SQL的示例代码:
Entity SQL's CREATEREF reference: http://msdn.microsoft.com/en-us/library/bb386880(v=VS.90)
It's used to "Fabricates references to an entity in an entityset". You can also find references of REF and DEREF from the link.
For VS 2010, the reference is: http://msdn.microsoft.com/en-us/library/bb386880(v=VS.100)
Sample from MSDN:
Sample code of using entity framework SQL: