开发者

How do I refactor data contracts in WCF services?

开发者 https://www.devze.com 2022-12-19 17:25 出处:网络
We have lots of WCF services that are only used by our own code; the code that uses them is mostly in the same solutions files that contains the services.

We have lots of WCF services that are only used by our own code; the code that uses them is mostly in the same solutions files that contains the services.

However they do not use a shared assembly for the contracts, so each time a data contract is change the reference to the service has to be updated by hand in all projects that use the service. (Then the code needs to be fixed up by hand)

So how do I do a simple refactoring like renamed a data item in a data contract?


Is t开发者_Python百科here a way to update all references to services in a single solution with one command, rather then having to click on each reference in each project?


You may have already answered you own question here.

Move your data contracts to a shared "Contracts" project, which will allow you to use the built in Refactor -> Rename option in Visual Studio to change the name, with the change being reflected in all of the projects in the solution.

Update

To clarify, the Contracts project is an internal "organisation" of your contracts. It allows many of your projects to reference one set of contracts. For example...

WCF service exposes "List GetCustomerById(int id)".

WCF service may call down to a processing layer, which might need to calculate something using another project etc. All of thes projects can use the single "Customer" definition from your Contracts project.

Any consumer of the WCF service would get the definition of the Customer via the service reference. You wouldn't share your Contracts project or send the dll for their use.


With your current settings you can't do it because you are regenerating the proxy each time. This is good from SOA perspective as data contract should not change very often. But if you are controlling both client and service and it is all .Net you can do as Shonee suggested. Use the /r option in svcutil to generate the proxy from the common assembly. Then you can refactor easily.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号