そのコンテンツの一部である分類法によっていくつかのコンテンツを取得しようとしています/ここに私が持っているものがあります:
var taxonomyTerms = _taxonomyService.GetTerms(taxonomy.Id).Where(t => termsToSearch.Contains(t.Name)).ToList();
var listOfTermsIds= taxonomyTerms.Select(x => x.Id).ToList();
//works well until here, I have my list of terms ids
var originalContentItems = _cm
.Query<GenericContentPart, GenericContentRecord>()
.Join<TermsPartRecord>().Where(l => !l.Terms.Select(t => t.TermRecord.Id).Except(listOfTermsIds).Any()).List();
//this returns no records
foreach でこれを行うことができましたが、式でも同じことを行いたいと考えています。問題は、コードの最後の部分でレコードが返されないことです。
何か助けはありますか?