StartsWith results all rows
when I query from s in Services
where s.Code.StartsWith("")
select s
I get all my rows, isn't it suppose to return none rows...I beleive this query is asking for start with emptystring, correct? any explanation will be gladly appreciated.
where s.Code.StartsWith("")
select s
I get all my rows, isn't it suppose to return none rows...I beleive this query is asking for start with emptystring, correct? any explanation will be gladly appreciated.
Comments
Try running this expression:
"abc".StartsWidth("")