Print Page | Close Window

Serialization

Printed From: IdeaBlade
Category: DevForce
Forum Name: DevForce 2010
Forum Discription: For .NET 4.0
URL: http://www.ideablade.com/forum/forum_posts.asp?TID=2197
Printed Date: 04-Apr-2025 at 11:25pm


Topic: Serialization
Posted By: orcities
Subject: Serialization
Date Posted: 28-Sep-2010 at 7:40am
I am trying to save a class to the database that holds one of my entities. In doing so I found that the entity was not marked as serializable. I in turn made it serializable and it then give me.
 
Type 'IdeaBlade.EntityModel.Entity' in Assembly 'IdeaBlade.EntityModel, Version=6.0.5.0, Culture=neutral, PublicKeyToken=287b5094865421c0' is not marked as serializable.
 
How do I save an Entity to the database?



Replies:
Posted By: sbelini
Date Posted: 30-Sep-2010 at 9:26am
Hi Dan,
 
Your class must be marked with the DataContract attribute:
 
[DataContract]
public class CustomUser...
 
 



Print Page | Close Window