EntityFramework用法探索(二)CodeFirst

Code First,顧名思義,要先寫Code,而不是先建立數據庫內容。 同樣使用與上文 Database First 模式相同的例子,假設需要設計一個零售系統,我們先構建一個 Customer 類。 1 [Table("Customer", Schema = "STORE")] 2 public class Customer 3 { 4 [Key] 5 [D
相關文章
相關標籤/搜索