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
Ghouse Hussain
NA
41
24.8k
like command
Apr 22 2016 5:59 AM
please give me this query into Linq
select * from emp where ename Like '%s'
i had writen
pub List<emp> GetLike()
{
var x=from n in db.emps
where n.ename=='%s'
select n;
return x.tolist<emp>();
}
please Guide me
Reply
Answers (
7
)
Multiple strings collectively contain every string in array
plese write Linq code for GroupBy