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; }
}
正如您在我的代码中看到的,我的类设置为可序列化。但是在我更新我的 .edmx 文件后,这个设置被删除了。更新 edmx 文件后如何保持可序列化?