Visual Studio 下C#編譯器在解析屬性名稱時如果增加一個get_[您的另一個已經包含在類中屬性名稱]的屬性會報錯,微軟大哥這是什麼鬼?

來源:互聯網
上載者:User

標籤: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_[您的另一個已經包含在類中屬性名稱]的屬性會報錯,微軟大哥這是什麼鬼?

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.