如何在linq查询

时间:2016-10-29 16:53:42

标签: c# asp.net sql-server linq

我有一个linq查询,它从两个表中获取结果。但该查询并未显示所有结果。当我在SQL Server中测试它时,我有这个:

| mcod  | pcod  | c_ogrn        | fam_v | im_v    | ot_v   | idGk
| 41004 | 10023 | 1027800518063 | Johny | Johnson | Andrew |  3   
| 41004 | 10023 | 1027800518063 | Johny | Johnson | Andrew | 11  

您看到最后一列中的数据不同。但是当我在linq查询中测试时,我得到了这个结果:

| mcod  | pcod  | c_ogrn        | fam_v | im_v    | ot_v   | idGk
| 41004 | 10023 | 1027800518063 | Johny | Johnson | Andrew |   3   
| 41004 | 10023 | 1027800518063 | Johny | Johnson | Andrew |   3  

为什么查询相同但结果不同?

我的c#代码:

 var fidn  = from post in repository.users
             join meta in repository.usersLG on post.pcod equals meta.pcod
             where post.fam_v.Trim() == "Johny" && post.actual == 1
             //where post.fa post.fam_v.Trim() == fambox.Text and post.actual=1
             select new Final
                          {
                              mcod = post.mcod,
                              pcod = post.pcod,
                              c_ogrn = post.c_ogrn,
                              fam_v = post.fam_v,
                              im_v = post.im_v,
                              ot_v = post.ot_v,
                              idGK = meta.idGK
                          };

我的T-SQL查询:

SELECT  
    users.[mcod], users.pcod, [c_ogrn], [fam_v], [im_v], [ot_v], idGk
FROM  
    [table].[dbo].[users]
JOIN
    [table].[dbo].[usersLG] ON users.pcod = usersLG.pcod 
WHERE 
    users.fam_v = 'Johny'
    AND users.actual = 1 

Asp.net网页,实体框架,C#linq,SQL Server

更新我的课程和主键:

用户:

[Key]
public string pcod { get; set; }
public string mcod { get; set; } 
public string c_ogrn  { get; set; }
public string fam_v { get; set; } 
public string im_v { get; set; }
public string ot_v { get; set; }
public int actual { get; set; }

usersLG

[Key]
public string pcod { get; set; }
public int idGK { get; set; }
public string mcod { get; set; }
public byte actual { get; set; }

最后

[Key]
public int idGK { get; set; }
public string pcod { get; set; } 
public string mcod { get; set; }
public string c_ogrn { get; set; } 
public string fam_v { get; set; }
public string im_v { get; set; } 
public string ot_v { get; set; }
public int actual { get; set; }

2 个答案:

答案 0 :(得分:0)

我解决了我的问题,谢谢Gert Arnold 我的问题是在行中的相同值。因为我没有定义id列 - 结果是相同的 我只是将表中的id列添加到我的类中,并将主键添加到它们中 现在一切正常!

答案 1 :(得分:0)

我遇到了同样的问题,数据库中的主键应该与实体框架定义中的定义相同。

一旦密钥(主要的,外来的)匹配,它就应该有效。