Hi, I've got a Person class that is exposed as the DataContract. I know that normally I should expose all methods through the ServiceContract, but is it possible to expose methods from the DataContract. This way the client could do something like (supposing I exposed a Save() method):
Person p = new Person(); p.Save(); possible ? Thanks
