我正在两个不同的数据库(具有不同的上下文)之间导入数据。
所以我有两种不同的背景。目标是将上下文 A 的一些数据导入到上下文 B 中。
上下文 B 中的数据从不直接编辑,它们仅从上下文 A 导入。在上下文 B 中,我复制了从中导入它的 ID。
现在我正在尝试检索不在上下文 B 中或具有更新版本的所有数据的列表。
我在两个表中有一个 ModifiedAt" 字段,让我知道该字段是否已被修改。
这是我当前的代码:
//Here I get all my current data in the context B with their modification time
Dictionary<int,DateTime> currentItems = contextB.Dossiers.ToDictionary(d=>d.MatchingReferenceId, d=>d.ModifiedAt);
//And here the pain starts:
contextA.Dossiers.Where(da=> !currentItems.Keys.Contains(da.Id) || currentItems.FirstOrDefault(db=>db.Key == da.Id).Value <da.ModifiedAt)//And I'm looping on it with a foreach.
第一部分(我检查上下文 B 是否有元素)有效,第二部分,我得到了这个异常:
Unable to process the type 'System.Collections.Generic.KeyValuePair`2[]', because it has no known mapping to the value layer.
但是我不能更简单地在 Id 和修改时间之间建立这种联系(一开始,我有一个来自其他上下文的 POCO 类,我也尝试过使用匿名类型,结果相同)
我错过了什么?
编辑 1
我还尝试了完全相同的结果: contextA.Dossiers.Where(da=> !currentItems.Keys.Contains(da.Id) || currentItems.Any(db=>db.Key == da.Id && db.价值
编辑 2
我尝试了 lambda,但在这里它不喜欢同时使用两个上下文:
var myList = (from db in contextB.Dossiers
let dstId = newContext.Dossiers.Select(d=>d.MatchingReferenceId)
from da in contextA.Dossiers
where !db.Contains(dSource.ID)|| (db.MatchingReferenceId == da.Id && db.ModifiedAt< da.ModifiedAt)
select new {NewId =db.Id, OldId = da.Id});
-->
指定的 LINQ 表达式包含对与不同上下文关联的查询的引用。