My query is like this:
var list = context.Items.Where(i => i.Title.StartsWith(searchValue) || (i.Title + string.format("{0}prep")).StartsWith(searchValue)).ToList();
But I am gettings exception - object not set to the instance of the object.
I also tried to add .AsEnumerable after .Where but doesn't work.
What I did wrong here?
