从相关表实体框架获取值

时间:2016-06-22 05:12:06

标签: asp.net entity-framework linq asp.net-mvc-4

所以我使用Visual Studio Entity Framework ADO.NET模型添加了这些表的数据库。 Database setup

现在我可以从给出我编写的代码的前两个表中检索所有内容,但我也喜欢血色的名称,而不仅仅是BloodColorID。我怎么能这样做?这是我现在拥有的:

List<Person> Person= new List<Person>();
            Person= dc.Persons.Include(c => c.BloodTypes).ToList();

0 个答案:

没有答案