これは、次のlinqクエリをコンパイルするとエラーが発生しているようです。私はいくつかの似たような問題を読んでいましたが、すべて.Contains()の代わりに.Any()関数を使うことに重点を置いていましたが、それにもかかわらず、文をコンパイルする際にエラーが発生し、例外が記録されています。System.NotSupportedException:type_.Onlyプリミティブの定数値を作成できません...このコンテキスト
これは、ステートメントである: -
int result=0;
result = (from u in objContext.CLG_challengeMaster
where u.appId == applicationId
&& objContext.CLG_taskDetail.Any(e => e.challengeId == u.id)
&& !objContext.CLG_challengeDetail.Any(e => e.challengeId == u.id && (e.userId == null && e.groupId == null && e.appGroupId == null && e.roleId == null))
select u).Count();
これは、エラーログです:
Message: System.NotSupportedException: Unable to create a constant value of type 'DataAccess.Entities.Models.CLG_taskDetail'. Only primitive types or enumeration types are supported in this context.
at System.Data.Objects.ELinq.ExpressionConverter.ConstantTranslator.TypedTranslate(ExpressionConverter parent, ConstantExpression linq)
at System.Data.Objects.ELinq.ExpressionConverter.TypedTranslator`1.Translate(ExpressionConverter parent, Expression linq)
at System.Data.Objects.ELinq.ExpressionConverter.TranslateExpression(Expression linq)
at System.Data.Objects.ELinq.ExpressionConverter.NewArrayInitTranslator.<>c__DisplayClass0.<TypedTranslate>b__1(Expression e)
at System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()
at System.Data.Common.CommandTrees.ExpressionBuilder.Internal.EnumerableValidator`3.Validate(IEnumerable`1 argument, String argumentName, Int32 expectedElementCount, Boolean allowEmpty, Func`3 map, Func`2 collect, Func`3 deriveName)
at System.Data.Common.CommandTrees.ExpressionBuilder.Internal.EnumerableValidator`3.Validate().........
誰でもplzは助けることができます。この行の
は最終的にそれを破ると、それを再構築しなければならなかった「どこ」を使用してのように変更します。 ( –