In my LinQ query I have to search words that start from H to L. This is my code:
var Artists = context.GetTable<Artist>();
var leftOuterJoinQuery =
from arti in Artists
where arti.Name.StartsWith("H")//to L
var Artists contains table with all artists from my Database.
Someone knows how resolve this?