gpt4 book ai didi

c# - Linq to Sql Count Include 联接

转载 作者:太空狗 更新时间:2023-10-29 21:16:47 26 4
gpt4 key购买 nike

我有一个 Linq to sql 如下:

var members=db.Members.Include(x=> x.Contact).Count();

现在由于一些错误的数据,我的成员中的所有联系人都没有相应的联系人记录。因此,在计数过程中,我如何将内部连接后的计数包含在联系人表中。

问题是当我得到成员列表时,成员列表有100 条记录,而 Count 有150 条记录(50 条记录是坏数据)。。 p>

var membersQ=db.Members.Include(x=> x.Contact).Select(i=> new MemberViewModel(){
Name = i.Contact.Name,
ContactId= i.Contact.Id,
CreatedDate= i.CreatedDate
}).AsQueryable();
var members=memberQ.ToList();// =100,paging is done...
// the memebers list uses paging but the count doesn't
var total=membersQ.Count(); // =150

我在计数期间检查了结果查询,显然它在 Count()

时没有对 Contact 表执行 JOIN

更新数据库结构

Member Table
Id ContactId, CompanyId, CreatedDate ...

Contact Table
Id Name ...

Member 表中 ContactId 的外键不是在数据库级别设置的,而是仅在模型上设置的。

[ForeignKey("ContactId")]
Public Contact Contact { get; set; }

坏数据是这样的

我之前有 1,2,3,4,5,6,7,8,9,10 作为联系人记录,所有这些联系人也在 Member 表中。

现在我从 Contact 表中删除了 6-10 条记录。但是恰好没有从Member表中删除。

所以这会导致计数出现问题。是的,从 Member 中删除错误数据可以解决问题,但问题是如何在使用 Count() 时使用 join

注意:我使用数据库初始化器null

更新 2我使用了 LinqPad 并尝试了默认的 Linq To SQLEntityFramework (DbContext) 连接,但我发现的结果令人困惑。

对于查询:

(from a in Members
join b in Contacts on a.ContactId equals b.ContactId
select a).Count()

使用默认的 Linq To SQL

SELECT COUNT(*) AS [value]
FROM [Member] AS [t0]
INNER JOIN [Contact] AS [t1] ON [t0].[ContactID] = [t1].[ContactID]

使用 Entity Framework DbContext

SELECT 
[GroupBy1].[A1] AS [C1]
FROM ( SELECT
COUNT(1) AS [A1]
FROM [dbo].[Member] AS [Extent1]
) AS [GroupBy1]

在我的代码中,我使用了 DbContext 方法。所以..不知道在这里做什么.顺便说一句:很抱歉有一个带有 linq-to-sql 的标签,它实际上是 entityframework

最佳答案

这个怎么样:

var x = from m in Members 
join c in Contacts on m.ContactId equals c.ID
select new
{
Name = c.Name,
ContactId= c.ID,
CreatedDate= c.CreatedDate
};

Console.Write(x.Count());

编辑

当我将 LinqPad 用于此查询并查看生成的 SQL 时,我得到:

SELECT COUNT(*) AS [value]
FROM [Members] AS [t0]
INNER JOIN [Contact] AS [t1] ON [t0].[ContactId] = ([t1].[ID])

编辑 2

你也可以试试这个:

var x = from c in Contacts
from m in Members where m.ContactId == c.ID
select new
{
Name = c.Name,
ContactId= c.ID,
CreatedDate= c.CreatedDate
};

Console.Write(x.Count());

关于c# - Linq to Sql Count Include 联接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35570050/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com