9
Khung thực thể - Mã đầu tiên - Danh sách không thể lưu trữ <Chuỗi>
Tôi đã viết lớp học như vậy: class Test { [Key] [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)] public int Id { get; set; } [Required] public List<String> Strings { get; set; } public Test() { Strings = new List<string> { "test", "test2", "test3", "test4" }; } } và internal class DataContext : DbContext { public …
106
c#
.net
entity-framework