-1
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。

感谢谁能帮助我。

4

2 回答 2

3
var applicantList = (from a in context.Profiles
    join app in context.APPLICANTs
    on a.PROFILE_ID equals app.Profile_id
    where app.LastName == NULL & app.Firstname == NULL
    select a).Take(1000);
于 2013-05-15T04:51:19.117 回答
0

如果您使用带有 c# 的 Asp.net mvc3,那么运算符应该类似于 &&。IE

var applicantList = (from a in context.Profiles
    join app in context.APPLICANTs
    on a.PROFILE_ID equals app.Profile_id
    where app.LastName == NULL && app.Firstname == NULL
    select a).Take(1000); 
于 2013-05-15T06:07:59.443 回答