標籤:started type ble mode virt 參與 max amount entity
假設在在我們的vs環境建立一個類 copy以下代碼,表面看好像一切都沒有問題。
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel.DataAnnotations; 4 using System.ComponentModel.DataAnnotations.Schema; 5 using System.Linq; 6 using System.Text; 7 using System.Threading.Tasks; 8 9 namespace yaou.Data.DomainModels10 {11 [Table("coupon_setting")]12 public class coupon_setting13 {14 [Key]15 [DatabaseGenerated(DatabaseGeneratedOption.Identity)]16 public int id { get; set; }17 18 [MaxLength(20)]19 public string title { get; set; }20 21 public DateTime get_started_on { get; set; }22 23 public DateTime get_end_on { get; set; }24 25 [DataType(DataType.Date)]26 public DateTime started_on { get; set; }27 28 [DataType(DataType.Date)]29 public DateTime end_on { get; set; }30 31 public virtual category category { get; set; }32 33 public int amount { get; set; }34 }35 }
同時建立兩個屬性 一個為get_started_on 一個為started_on;
立馬報錯。
錯誤CS0102類型“coupon_setting”已經包含“get_started_on”的定義。
開什麼玩笑,微軟大哥?
期待大家參與,給出答案。
Visual Studio 下C#編譯器在解析屬性名稱時如果增加一個get_[您的另一個已經包含在類中屬性名稱]的屬性會報錯,微軟大哥這是什麼鬼?