使用 IEnumerable的 OData EndPoint/DataService
我将 NHibernate 与 NHibernate.Linq 一起使用,并且有一堆动态加载模块,每个模块都有自己的 POCO 和映射(ClassMap<POCO>)。
我之前创建过 OData 服务,但通常使用 datacontext 和 IQueryable 作为 Properties/Getters。
我想要的是通过将 IEnumerable 传递到构造函数中来创建服务
IEnumerable<IQueryable>> queryableObjects;
var dataService = new DataService(queryableObjects);
这可能吗?
I am using NHibernate with NHibernate.Linq, and have a bunch of dynamically loading modules each with their own POCO's and Mappings (ClassMap<POCO>).
I have created OData services before, but normally with a datacontext and IQueryable as Properties/Getters.
What I want is to create the service by passing in IEnumerable, into the constructor
IEnumerable<IQueryable>> queryableObjects;
var dataService = new DataService(queryableObjects);
Is this at all possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是可行的,但需要更多的工作。做到这一点的方法是实施您的客户提供商。这里有一个非常好的指导如何做到这一点:
https://blogs.msdn.microsoft .com/alexj/2010/01/07/custom-data-service-providers/
OData 提供程序工具包中还有一些不错的示例,可以在 OData SDK - 示例代码。
It is doable, but it requires some more work. The way to do this is to implement your customer provider. A very nice guide how to do this is here:
https://blogs.msdn.microsoft.com/alexj/2010/01/07/custom-data-service-providers/
There are also nice samples as part of the OData provider toolkit, which can be found on OData SDK - Sample Code.