vote up 1 vote down star

say i have a nvarchar field in my database that looks like this

1, "abc abccc dabc"
2, "abccc dabc"
3, "abccc abc dabc"

i need a select LINQ query that would match the word "abc" with boundaries not part of a string

in this case only row 1 and 3 would match

flag

4 Answers

vote up 2 vote down check
from row in table.AsEnumerable()
where row.Foo.Split(new char[] {' ', '\t'}, StringSplitOptions.None)
    .Contains("abc")
select row

It's important to include the call to AsEnumerable, which means the query is executed on the client-side, else (I'm pretty sure) the Where clause won't get converted into SQL succesfully.

link|flag
my bad it's not comma seperated the 1, is the primary key the string is "abc abccc dabc" so a space? – decon May 8 at 8:55
@Noldorin, I edited your answer to replace the split chars. Split is better in this case. +1 – bruno conde May 8 at 9:06
@bruno: Ah, thanks. Not sure why I wrote a comma, but yeah it should work well now. – Noldorin May 8 at 11:09
Downvote because? – Noldorin May 9 at 10:48
This will be HORRIBLY inefficient if the table contains lots of rows - because it will fetch every row from SQL Server to the client. – albahari May 9 at 10:49
show 1 more comment
vote up 0 vote down

Maybe a regular expression like this (nb - not compiled or tested):

var matches = from a in yourCollection
         where Regex.Match(a.field, ".*\sabc\s.*")
         select a;
link|flag
That should work, although it's going to cause a significant performance hit on a large table. You'd definitely want to compile the regex before you run the query. – Noldorin May 8 at 8:46
how do i compile it? – decon May 8 at 8:48
would regex work with sql server? – decon May 8 at 8:49
@decon: The regex should be able to run on the client side (someone correct me if I'm wrong), so there shouldn't be any problem. I recommend you go with my simpler solution which uses string.Split still... – Noldorin May 8 at 8:52
vote up 0 vote down
datacontext.Table.Where(
         e => Regex.Match(e.field, @"(.*?[\s\t]|^)abc([\s\t].*?|$)")
);

or

datacontext.Table.Where(
         e => e.Split(' ', '\t').Contains("abc");
);
link|flag
sql server support regex? or does linq download the whole table from sql server and then process the regex – decon May 8 at 8:56
@decon: I've just updated my post which demonstrates how to insure that the query gets interpreted on the client-side rather than converted into SQL and run on the server side. – Noldorin May 8 at 12:45
vote up 0 vote down

For efficiency, you want to do as much of the filtering as possible on the server, and then the rest of the filtering on the client. You can't use Regex on the server (SQL Server doesn't support it) so the solution is to first use a LIKE-type search (by calling .Contains) then use Regex on the client to further refine the results:

db.MyTable
  .Where (t => t.MyField.Contains ("abc"))
  .AsEnumerable()    // Executes locally from this point on
  .Where (t => Regex.IsMatch (t.MyField, @"\babc\b"))

This ensures that you retrieve only the rows from SQL Server than contain the letters 'abc' (regardless of whether they're a word-boundary match or not) and use Regex on the client-side to further restrict the result set so that only matches that are on word boundaries are included.

link|flag
+1 for only retrieving rows containing "abc". – Daniel Brückner May 8 at 15:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.