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%'