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
Nepethya Rana
NA
335
152.3k
Linq to Sql query to search for Accent sensitive name
Aug 27 2016 10:14 PM
How do i write given query into Linq to Sql Query
SELECT *
FROM employees
WHERE
name COLLATE Latin1_general_CI_AI Like '%Nino%' COLLATE Latin1_general_CI_AI.
This is my code
queries.Add(from e in context.employees
where e.name == nameParam
select e);
Reply
Answers (
5
)
How to pass data from index view to edit view
How do make changes in my code ? linq to sql . Need help