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

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

实体部分

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