LinqToSql 奇怪的行为
- 作者: 亖呉?盀
- 来源: 51数据库
- 2022-12-13
问题描述
我有以下代码:
var tagToPosts = (from t2p in dataContext.TagToPosts
join t in dataContext.Tags on t2p.TagId equals t.Id
select new { t2p.Id, t.Name });
//IQueryable tag2postsToDelete;
foreach (Tag tag in tags)
{
Debug.WriteLine(tag);
tagToPosts = tagToPosts.Where(t => t.Name != tag.Name);
}
IQueryable tagToPostsToDelete = (from t2p in dataContext.TagToPosts
join del in tagToPosts on t2p.Id equals del.Id
select t2p);
dataContext.TagToPosts.DeleteAllOnSubmit(tagToPostsToDelete);
其中 tags 是一个 List
where tags is a List<Tag> - list of tags created by constructor, so they have no id. I run the the code putting a brakepoint on line with Debug and wait for a few cycles to go. Then I put tagToPosts.ToList() in the Watch window for query to execute. In SQL profiler I can see the following query:
exec sp_executesql N'SELECT [t0].[Id], [t1].[Name] FROM [dbo].[tblTagToPost] AS [t0] INNER JOIN [dbo].[tblTags] AS [t1] ON [t0].[TagId] = [t1].[Id] WHERE ([t1].[Name] @p0) AND ([t1].[Name] @p1) AND ([t1].[Name] @p2)',N'@p0 nvarchar(4),@p1 nvarchar(4),@p2 nvarchar(4)',@p0=N'tag3',@p1=N'tag3',@p2=N'tag3'
我们可以看到每个参数参数都有一个循环中最后一个tag.Name的值.你知道如何解决这个问题并让循环添加 Where 和每个 tyme 的新条件吗?我可以看到 IQueryable 在执行之前只存储指向变量的指针.
We can see every parameter parameter have the value of last tag.Name in a cycle. Have you any idea on how to get arout this and get cycle to add Where with new condition every tyme? I can see IQueryable stores only pointer to variable before execution.
推荐答案
将您的 foreach 更改为:
foreach (Tag tag in tags){
var x = tag.Name;
tagToPosts = tagToPosts.Where(t => t.Name != x);
}
这背后的原因是惰性求值和变量捕获.基本上,您在 foreach 语句中所做的是不是过滤结果,因为它看起来像.您正在构建依赖于要执行的某些变量的表达式树.需要注意的是,实际变量是在表达式树中捕获的,而不是捕获时的值.由于变量 tag 每次都会被使用(并且它的作用域是整个 foreach,所以它不会在每次迭代结束时超出作用域),它被捕获对于表达式的每个部分,最后一个值将用于所有 出现.解决方案是使用一个临时变量,它的作用域在 foreach 中,因此它会在每次迭代和下一次迭代时超出范围,它将被视为新变量.
The reason behind this is lazy evaluation and variable capturing. Basically, what you are doing in the foreach statement is not filtering out results as it might look like. You are building an expression tree that depends on some variables to execute. It's important to note that the actual variables are captured in that expression trees, not their values at the time of capture. Since the variable tag is used every time (and it's scope is the whole foreach, so it won't go out of scope at the end of each iteration), it's captured for every part of the expression and the last value will be used for all of its occurrences. The solution is to use a temporary variable which is scoped in the foreach so it'll go out of scope at each iteration and it the next iteration, it'll be considered a new variable.
- C#通过fleck实现wss协议的WebSocket多人Web实时聊天(附源码)
- 团队城市未满足要求:MSBuildTools12.0_x86_Path 存在
- 使用 MSBuild.exe 在发布模式下构建 C# 解决方案
- 当我发布 Web 应用程序时,AfterPublish 脚本不运行
- 构建时 T4 转换的产品仅在下一个构建中使用
- ASP.NET Core Application (.NET Framework) for Windows x64 only error in project.assets.json
- 新的 .csproj 格式 - 如何将整个目录指定为“链接文件"到子目录?
- 如何将条件编译符号(DefineConstants)传递给 msbuild
- MSBuild 支持 Visual Studio 2017 RTM 中的 T4 模板
- NuGet 包还原找不到包,没有源
