0

我有一个 wcf 服务,我在其中执行一些特定于业务的流程。我从 mvc3 Web 应用程序中使用此服务。由于我仍在开发过程中,我通过添加新方法或更改方法的签名来更改我的 Web 服务。然后我需要在 Web 应用程序上更新我的服务引用,但据我所知,当我这样做时,引用类是从头开始创建的。这里的问题是,我想在服务引用中添加一些逻辑。但在这种情况下,每次我更新服务参考时,我添加的其他部分都会丢失,我需要手动复制粘贴并调整我的代码。解决这个问题的正确方法是什么?

4

1 回答 1

0

Using a partial class, or deriving a class from the service reference and adding all the custom logic in that class will provide the ability to updating the service reference while keeping the custom code. This approach looks very neat to me. Thanks for the ideas.

于 2013-06-18T09:00:02.567 回答