设置 DataServiceHost DataService 上下文

发布于 2024-09-18 06:29:56 字数 367 浏览 6 评论 0原文

有没有办法在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沉默的熊 2024-09-25 06:29:56

您可以重写 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文