我们可以从 wcf 服务调用类库吗
我们可以从 wcf 服务调用类库吗...抱歉,如果问题是错误的.. 类中的方法
public class DocItem
public DataSet GetRecord(int ID, DateTime startDate, DateTime endDate, string Type, string pocType)
Can we call class Library from a wcf service...sorry if the question is wrong..
the method in the class
public class DocItem
public DataSet GetRecord(int ID, DateTime startDate, DateTime endDate, string Type, string pocType)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果类库支持以无人值守的方式运行,那么可以。如果您需要的功能会导致 UI 弹出,那么您可能需要尝试其他方法。
If the class library supports running in an unattended manner, then yes. If the functionality you require from it would cause UI to pop up, then you may have to try another approach.
是的。只需向
项目
中的库
添加引用
即可。然后添加using
命名空间,您就可以实例化 DLL 中的对象。Yes. Simply
Add a Reference
to theLibrary
in yourProject
. Then add in theusing
namespace and you'll be able to instantiate the objects from the DLL.类库只不过是您服务中的一个 DLL...为什么您不能呢?
A class library is going to be nothing more than a DLL in your service... why wouldn't you be able to?