TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Mohsin Mustufa
NA
16
3.2k
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
Reply
Answers (
2
)
group_concat in LINQ
how to modify Inner join sql query to linq to entities.