Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
5
Answers
Linq to Sql query to search for Accent sensitive name
Nepethya Rana
8y
489
1
Reply
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);
Post
Reset
Cancel
Answers (
5
)
Next Recommended Forum
How to pass data from index view to edit view
How do make changes in my code ? linq to sql . Need help