如何获取Entity Framework的table的所有关系列表?

How can I get all the relationships lists of a table by Entity Framework?

如何使用 .Include() 以便在 [=26] 中包含 所有 个 table (class) 关系列表=]?

我看到了这个选项:

var coursesWithStudents = context.courses.Include("students").ToList();

但我需要一些通用的东西,而不仅仅是针对特定的 table,并且包括 table 的所有关系。

有什么办法吗?

谢谢大家。

如果您想以通用形式获取相关实体。我认为您可以看到问题的高分解决方案,它会对您有所帮助。 EF Including Other Entities (Generic Repository pattern)