3

I'm using the Visual Studio 2010 RC for .NET 4.0 and I'm trying to figure out how to do a wildcard comparison with Entity Framework.

I'd like to have the following query for EF where I find all the names that start with 'J'

select * from Users where FirstName like 'J%'
Ryan Gates
  • 4,501
  • 6
  • 50
  • 90
Paul Mendoza
  • 5,709
  • 12
  • 53
  • 82

3 Answers3

9
from user in Users where user.FirstName.StartsWith("J") select user;
David Morton
  • 16,338
  • 3
  • 63
  • 73
3

Use:

var query = Users.Where(user => user.FirstName.StartsWith("J"));
Ahmad Mageed
  • 94,561
  • 19
  • 163
  • 174
0

I would refer you to this question, I assume it hasn't changed in .net 4.0

Community
  • 1
  • 1
csjohnst
  • 1,678
  • 3
  • 17
  • 24