Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
231 views
in Technique[技术] by (71.8m points)

c# - Like in Lambda Expression and LINQ

How can I do something like this:

customers.where(c=>c.Name **like** "john");

I know this isn't possible but I was wondering how can I have something similar.

question from:https://stackoverflow.com/questions/3616215/like-in-lambda-expression-and-linq

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
customers.Where(c => c.Name.Contains("john"));

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...