I’m wondering is there any condition instead of T-SQL like in generic lists in C# 4.0.
I’ve got a gridview on my page I got all datas and I need to search by name and lastname, so I think there must be but I couldn’t find yet.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use
String.Contains,String.StartsWithorString.EndsWithas part of a predicate, either usingList<T>.FindAllorWherein LINQ.For example: