vote up 0 vote down star

I'm new to SubSonic. I've been looking for a way to use LIKE operator that let me build SQL query like this: select * from person where lastname like '%bob%', but I could not find a generic way to do this beside inserting string into the quey like q.OR(Person.Columns.FirstName, SubSonic.Comparison.Like, "%bob%");

that is not a prefered way since different DB may user different operator other than %

flag
hey borey, it would be cool if you tagged your question a bit better. for example: SQL SubSonic – andy Jun 24 at 0:08

2 Answers

vote up 0 vote down

Can I use SimpleRepository to perform like comparison?

link|flag
vote up 4 vote down

From here:

int records = new Select().From<person>()
                .Where(person.lastname)
                .ContainsString("bob").GetRecordCount();
link|flag
what version of SobSonic are you using? because I downloaded the latest version and it doesn't contain the method "containsString", I copied ur query and try to compile, but got error too. And I don't see it in the doc. – Bob Jun 24 at 15:31

Your Answer

Get an OpenID
or

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