注解model
作者:互联网
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]//自增
[Required]//必填
[Key]//键,仅限一个,若有多个使用fluent
[ForeignKey("TouristRouteId")]//外键
[Range(0.0, 1.0)]//范围
遇到了再补充
标签:1.0,必填,ComponentModel,System,DataAnnotations,using,注解,model 来源: https://www.cnblogs.com/lwl1569/p/15393512.html