Böyle bir sınıf yazdım:
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"
};
}
}
ve
internal class DataContext : DbContext
{
public DbSet<Test> Tests { get; set; }
}
Kodu çalıştırdıktan sonra:
var db = new DataContext();
db.Tests.Add(new Test());
db.SaveChanges();
verilerim kaydediliyor ancak yalnızca Id
. Dizeler listesine uygulanan herhangi bir tablom veya ilişkim yok .
Neyi yanlış yapıyorum? Strings yapmayı da denedim virtual
ama bu hiçbir şeyi değiştirmedi.
Yardımın için teşekkürler.