LINQクエリのcontains関数を使用中にエラーが発生しました
以下のエラーが発生しました
Contains is not supported, doing a substring match over a text field is a very
slow operation, and is not allowed using the Linq API.
The recommended method is to use full text search (mark the field as Analyzed and
use the Search() method to query it.
ここに私の質問があります
query = from u in Session.Query<Article>() where u.Tags.Contains(tags) orderby u.CreationDate descending select
StartWith/EndsWith
正常に動作しますが、私の要件を完全に満たしていません