实体框架:如何设置模型实体框架为Serializable [英] Entity Framework: How to set model as Serializable in Entity Framework

查看:297
本文介绍了实体框架:如何设置模型实体框架为Serializable的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

using System;
using System.Collections.Generic;
[Serializable]
public partial class user
{
    public int UserId { get; set; }
    public string Name { get; set; }
    public string Surname { get; set; }
    public string UserName { get; set; }
    public string Email { get; set; }
    public string Password { get; set; }
    public System.DateTime Creation { get; set; }
    public bool Status { get; set; }
    public int UserTypeId { get; set; }
}

正如你可以在我的code看到,我的课堂设置好的为可序列化。但经过更新我的.edmx文件,该设置删除。我怎样才能更新后的文件EDMX保持序列化?

As you can see in my code, my class setted as serializable. But after I update my .edmx file, this setting deleted. How can I keep Serializable after update edmx file?

推荐答案

正如你可以看到你的类是局部的,所以你可以添加其他类(文件)到你的项目和使用Serializable属性那里。

As you can see your class is partial so you can add another class(file) to your project and use Serializable attribute there.

[Serializable]
public partial class user
{

}

与相同的命名空间中的另一个类将这个也看<一个href=\"http://msdn.microsoft.com/en-us/library/wa80x488(v=vs.90).aspx\">http://msdn.microsoft.com/en-us/library/wa80x488(v=vs.90).aspx有关谐音进一步的信息。

Put this in another class with the same namespace and also see http://msdn.microsoft.com/en-us/library/wa80x488(v=vs.90).aspx for further info about partials.

这篇关于实体框架:如何设置模型实体框架为Serializable的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆