从Entity Framework 6迁移到EF Core 3时,出现此错误:
InvalidOperationException:'NavigationExpandingExpressionVisitor'对LINQ表达式'(<> h__TransparentIdentifier0)=> <> h__TransparentIdentifier0.grp'的处理失败。
我相信这与某种类型的客户端评估有关,但是我不确定如何解决。我本质上有这个查询:
IEnumerator GetValue() {
// The corrected line.
yield return StartCoroutine(SomeIEnumerator());
}
IEnumerator GetValue2() {
//other stuff, with yield so our function still returns a value
StarCoroutine(GetValue());
//this stuff runs without waiting
}
“最新”是导致故障的部分。有人可以帮助我了解如何解决现在已损坏的查询吗?