我知道 c# 中的变量通常以小写首字母开头,但在实体框架模型中如何正确?例如,它应该是“日期”还是“日期”。在我的情况下,sql 列名导致名称的首字母小写。当然我可以用 [Table("")] 改变它,但是正确的方法是什么?
public class AppointmentEvent
{
public int appointmentEventId { get; set; }
[Required]
public DateTime date { get; set; }
[Required]
public virtual Employee Employees { get; set; }
[Required]
public virtual Appointment Appointments { get; set; }
}