一、简单类别
[Serializable]
public class MyClass
{
public String FirstName { get; set: }
public String LastName { get; set: }
//Bellow is what I would like to do
//But, it s not working
//I get an exception
ContactDataContext db = new ContactDataContext();
public void Save()
{
Contact contact = new Contact();
contact.FirstName = FirstName;
contact.LastName = LastName;
db.Contacts.InsertOnSubmit(contact);
db.SubmitChanges();
}
}
我想附上“拯救儿童”这一类方法,以便我可以将其称作每个物体。 当我介绍载有<>ContactDataContext的上述声明时,我举出以下错误:“。 在组装上......《公用金》没有编号为序号
很明显,数据组是由框架生成的。 我检查了这个类别,看不到哪里标有serialize。
我可以做些什么来克服这一点? 当我不是某一阶层的作者时,有什么规则? Just go future and sign the DataContext category as seriesizable, and pretend that all will work?
帮助