EF实体类指定部分属性不映射数据库标记

命名空间 ;using System.ComponentModel.DataAnnotations.Schema;

实体部分

public partial class Student
{
[NotMapped]
public int age { get; set; } =18;
}

猜你喜欢

转载自www.cnblogs.com/farmer-y/p/9648081.html