Mohsin Mustufa

Mohsin Mustufa

  • NA
  • 16
  • 3.1k

LINQ value.contains function error

Oct 29 2013 6:39 AM
m facing the following error while using LINQ with RavenDB

`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.`

here is my LINQ Query


`query = from u in Session.Query<Article>() where u.Tags.Contains(tags) orderby u.CreationDate descending select `

plz help me solve my problem

Answers (2)