使用实体框架 Code First CTP 5 执行地理空间搜索的最佳方法是什么?
我真的很想用一个全新的应用程序尝试 Entity Framework 4 Code First CTP,但我想确保在此之前地理空间搜索不会成为问题,否则我会走另一条路。
有人使用 EF CF 进行过地理空间搜索吗?如果是这样,你是如何做到的以及为什么?
I'd really like to give Entity Framework 4 Code First CTP a try with a greenfield app but I want to make sure that geo spatial searches will not be a problem before I do, or I'll go another route.
Has anyone performed a geo-spatial search with EF CF? If so, how did you do it and why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个问题,因为 L2E 不支持它。但是您可以编写一个返回正确结果的过程,并使用 L2E 来使用它。
我认为 NerdDinner 有一个这样的例子。
编辑添加:您还可以在 EF 4 中使用直接 SQL,无需 proc。
It's a problem insofar as it's not supported in L2E. But you can write a proc which returns the right results, and consume that with L2E.
I think NerdDinner has an example of this.
Edited to add: You can also use straight SQL in EF 4 without a proc.