I am new to WCF, I am able to add multiple <OperationContract()>
under one service contract, however, could not fine any information on how to add multiple DataContracts under a single contract.
The problem is: With one service on contract (a single service reference in WPF) many procedures can be accessed, however, now I need to create many service references (one for each data Contract) in WPF, and that is bad option I believe.
My Classes are not inherited, they are independent.
Please advice if there is a option to get all class (data contracts) under one service reference or an alternative procedure if there could be one.
Thank you.