How to Filter ADO.NET data using a Full Text Seach (FTS) field?

Posted by ActionFactory on Stack Overflow See other posts from Stack Overflow or by ActionFactory
Published on 2010-01-22T13:46:55Z Indexed on 2010/03/25 8:03 UTC
Read the original article Hit count: 254

Hi All, We are using ADO.NET dataservices & are building URL based filters. Example: /Customers?filter=City eq 'London'

We now need to filter on a Full Text 'tags' Field. WAS HOPING FOR: /Customers?filter=Tag like 'Friendly'

PROBLEM: ADO.NET does not have a LIKE operator. ADO.NET does not seem to like FTS (It is not finding a match - because it is not parsing through the CSV's)

Any ideas how to make this work? THX

© Stack Overflow or respective owner

Related posts about ADO.NET

Related posts about like-operator