设置 DataServiceHost DataService 上下文
有没有办法在 WCF 数据服务中设置 DataService 的上下文?例如,假设我有以下 DataService:
public class MyDataService : DataService<MyContext>
假设 MyContext 有一个 IMyContext 接口,并且我使用 Unity 在自定义 DataServiceHostFactory 的构造函数中获取了该接口的实例。因此,我有这个上下文实例,并且在自定义工厂中有可以重写的 CreateServiceHost 方法。
是否可以使用我在此方法或其他地方获得的上下文来创建数据服务的实例?
我希望这是有道理的。
谢谢
Is there a way to set the context for your DataService in WCF Data Services? For example, say I have the following DataService:
public class MyDataService : DataService<MyContext>
Let's say MyContext has an interface of IMyContext and I obtain an instance of this during a custom DataServiceHostFactory's constructor by using Unity. So, I have this instance of the context and I have the method CreateServiceHost in the custom factory that I can override.
Is it possible to create an instance of the data service using the context I have obtained in this method or somewhere else?
I hope this makes sense.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以重写 CreateDataSource 方法,以便能够重写上下文类实例的创建。 http://msdn.microsoft.com/en-us/library/cc646746。 ASPX
You can override the CreateDataSource method to be able to override the creation of the context class instance. http://msdn.microsoft.com/en-us/library/cc646746.aspx