Click here to Skip to main content
15,909,822 members

Comments by Yustme (Top 3 by date)

Yustme 28-Aug-13 3:14am View    
But that still gives me this error message:

Type 'Microsoft.WindowsAzure.Storage.Table.TableEntity' in Assembly 'Microsoft.WindowsAzure.Storage, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' is not marked as serializable.

I don't control Microsoft.WindowsAzure.Storage.Table.TableEntity. So how can I mark it as serializable?
Yustme 27-Aug-13 12:39pm View    
But I can't add the [DataConract] attribute at all to the TableEntity. It's not my class.
Let alone adding System.Runtime.Serialization.KnownTypeAttribute to it.

Or did I misunderstood you?
Yustme 27-Aug-13 9:59am View    
Serializing/saving the MyClass user defined CLR object as a byte[] into the Azure Storage Table. Which I need to be able to deserialize when I need it again.

I updated my question, both classes now derive from TableEntity. Overlooked it when I placed the code here.