I have a large nested xsd generated object model which I would like to create interfaces for so as to create proxy objects. Is there a tool that will generate all of the interfaces I need or will I just need to generate them manually one at a time.
1 Answer
You can use xsd.exe to generate C# classes for you - you can then use the extract interface refactoring to generate interfaces from these.
3 Comments
rerun
I am aware of that tool. The xsd is huge and generated ~100 classes in a deep structure. I wanted a tool that could walk the tree until you reached primitive types.
Oded
@rerun if that is what you need, why didn't you ask that in you question?
mbx
@Oded That's what he asked: "entire object Graph"