How to get Inner Join using navigation property in Entity Framework Core
问题 I want to generate a query that uses an inner join for a one to one relationship using a navigation property. This is for an existing database that I cannot change. Here are what my entities look like: [Table("Info")] public class Info { [Key] public int InfoId { get; set; } public string Name { get; set; } public virtual MoreInfo MoreInfo { get; set; } } [Table("MoreInfo")] public class MoreInfo { [Key] public int InfoId { get; set; } public string OtherName { get; set; } public int