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
nguyen hung
NA
14
18.9k
how to search Unicode value Linq
Jul 16 2016 3:23 AM
i have page search thread with keyword support unicode
example:keyword hung will display result hùng and hung
my code in linq:
from thread in db.thread .Where(o => (!String.IsNullOrEmpty(key)) ? thread.content.Contains(
key) : true)
i have try add method removeunicode
from thread in db.thread .Where(o => (!String.IsNullOrEmpty(key)) ? removeunicode(thread.content).Contains(
key) : true)
but it's error linq to entities does not recognize the method
Please help me,thanks very much!
Reply
Answers (
2
)
Return dataset in linq
convert SQL to LINQ query