Why is wcf generated proxy getting from object

"Help Update Service" generates partial classes that derive from the object

public partial class Auftrag : object, System.Runtime.Serialization.IExtensibleDataObject

      

How can I get rid of object inheritance (so I can get another class in the partial class) I don't want to change the auto-generated code.

public partial class Auftrag : System.Runtime.Serialization.IExtensibleDataObject

      

I want to use the generated proxy classes as data objects inside WPF-ViewModels and so I want to inherit from a custom base class (which also implements IDataErrorInfo). I don't want to copy and paste the implementation for each partial class.

+3
c # .net wcf


source to share


No one has answered this question yet

See similar questions:

0
Does the generated proxy utility classes specifically inherit from the object?

or similar:

1270
Why not inherit from List <T>?
289
How do I implement a custom JsonConverter in JSON.NET to deserialize a list of base class objects?
36
WCF service reference generates its own contract interface, won't reuse mine
five
Making a wcf proxy vs ChannelFactory
2
Validating Prism IDataErrorInfo with DataAnnotation for ViewModel Objects
1
Hiding a derived class in WCF
1
WCF <operation> Asynchronous Methods Not Generated in Proxy Interface
0
WCF generic property not showing in derived class
0
WCF proxy class
0
Does the generated proxy utility classes specifically inherit from the object?



All Articles
Loading...
X
Show
Funny
Dev
Pics