所以我使用Visual Studio Entity Framework ADO.NET模型添加了这些表的数据库。 Database setup
现在我可以从给出我编写的代码的前两个表中检索所有内容,但我也喜欢血色的名称,而不仅仅是BloodColorID。我怎么能这样做?这是我现在拥有的:
List<Person> Person= new List<Person>();
Person= dc.Persons.Include(c => c.BloodTypes).ToList();