datacontract - Expose object from class library using WCF -
I am using a class library which highlights some objects. These objects have some properties that require data for their customers. I would like to create a WCF service which returns the object to my client, but I can not update the data library so that I can add data contracts and data entry attributes. What is the easiest way to highlight these things?
You can use
... You can apply the DataContact property to the individual category, but this is not always possible. For example, the individual class can be defined in a separate assembly, on which you have no control.
In view of this restriction, one way of sorting the person class is to replace them with another class that will copy the data content attachments and data needed for the new category. The objective is that the individual class should be seen as data contracts for data contact surveillers. Note that this non-data contract is a way of sorting classes. ...
Comments
Post a Comment