当前位置: 首页 > 工具软件 > linq2db > 使用案例 >

[ linq2db ] 使用LoadWith()对外键进行查询

师向文
2023-12-01
[table]表一
Student           
{
[PrimaryKey]
  Id,
  Name,
  ClassID    外键  --   
[Association]       |
  classId           |        
}                   |
                    |
[table]表二          |
Class               |   
{                   |
[PrimaryKey]        |
 Id,         <------ 
 Name,           
[Association]
 students
}


from n in students.LoadWith(student=>student.classId)
select n;

更多例子:

https://github.com/linq2db/linq2db/blob/bf1b0f83c43ef64491cc6892445a13ba115ceac5/Tests/Linq/Linq/LoadWithTests.cs

转载于:https://www.cnblogs.com/shanon/p/7082329.html

 类似资料: