Orchard モジュールの開発で、フィールドによってフィルタリングされた ContentParts の大文字と小文字を区別しないように取得するにはどうすればよいですか? 私が試してみました
var name = viewModel.Name.ToUpper();
var samples = _contentManager.Query<SamplePart, SamplePartRecord>()
.Where(x => x.Name.ToUpper() == name)
.List();
そして、私はエラーが発生しています
Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index
しかし、大文字と小文字を区別するかどうか気にせずに取得しようとすると
var name = viewModel.Name;
var samples = _contentManager.Query<SamplePart, SamplePartRecord>()
.Where(x => x.Name == name)
.List();
エラーは報告されていません。
何を与える?