Search code examples
sqlentity-frameworkado.netobjectquery

ef5 ObjectQuery "like"


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!


Solution

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