ef5 ObjectQuery "like"

698 Views Asked by At

I'm using EF5 for ObjectQuery,

var query = this.ObjectContext.CreateQuery<Role>("SELECT VALUE n FROM Role as n");
query = query.Where("it.Name like '%@name%'", new ObjectParameter("name", name));

But it doesn't work, which always return all results. Any ideas? Thx a lot!

1

There are 1 best solutions below

6
Pawel On BEST ANSWER

You want to use .Contains. When used on a string column translates to Sql LIKE