var applicantList = (from a in context.Profiles
join app in context.APPLICANTs
on a.PROFILE_ID equals app.Profile_id
where app.Profile_id == a.PROFILE_ID
select app).Take(1000);
这是声明,但我需要更改它。. .
当申请人表上的姓氏和名字字段的值为空时,我需要找到如何从 Profiles 表中获取值
在申请人表中。. 有一个外键 Profile_id。
感谢谁能帮助我。