Question

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!

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top