I\'ve been reading about serialization of entities graph in an entity framework context using Linq to entities and the different possible serializers: Binary, XmlSerializer andDataContractSerializer.
I have a smart client application communicating with its server via WCF. Data is created on the client and then sent over the service to be persisted. The server and client use the same domain classes
I need to do a deep copy in Silverlight, which I开发者_C百科 can do with the tried and tested serialize/deserialize approach. The copied objects aren\'t exact clones - they need to have some of their
I have a webservice with a method that takes a parameter of abstract base type Specification<TDomainModel> as parameter. I realize that WCF don\'t know how to de-/serialize this without specifyi
When working with the DataContractSerializer I am getting alot of extra attributes for namespaces that I dont really开发者_JAVA技巧 want to work with. I have generated a similar data structure in a di
I have a fairly large object graph build from POCOs/EF4 which I wish to deliver to client apps using WCF. I have everyting wired up and working quite well, i.e. I have:
I am writing my first WCF service. I am trying to understand how Datacontracts work. I have read the MSDN Article that describes how custom types should be marked up to create a data contract but I ca
I am getting an intermittent \"out of memory\" exception at this statement: return ms.ToArray(); In this method:
I\'m trying to ensure that my object references are preserved when serialized over WCF, but the CreateSerializer on my overriden DataContractSerializerOperationBehavior is never called. Can anybody he
I\'m trying to output a list of objects to a json format using the DataContractJsonSerializer class however I keep running into the following error.