var list = (from i in _dataContext.aspnet_Users.Include("aspnet_Membership") where i.UserName.Contains(userName) select i ).ToList();
if userName="" then nothing return. how can i do that if empty string then return all records?
|
|
Do:
|
|||
|
|
|
Fun Fact: The System.Data.Linq.SqlClient namespace includes a few helper methods that are pretty useful. You can use the SqlMethods.Like function which will return all results if an empty string is passed to it. Ex:
|
|||||||||
|