我有这个课程:
public class User
{
public int Id {get; set;}
public string Name {get; set;}
}
数据库表 -用户
public class Pet
{
public int Id {get; set;}
public string Name {get; set;}
}
DB 表 -宠物
public class UsersPets
{
public int UserId {get; set;}
public int PetId {get; set;}
}
数据库表 - users_pets
到现在我可以用 linq 获取用户的宠物。User.Pets
但是在 EF Code First 中如何在没有额外 Linq 查询的情况下进行自动映射?