I'm using official Mongo C# driver. As suggested in answer to one question I'm using the following for the 'like' operator -
Query.Matches("name", "Joe");
My question is how can I achieve the 'NotLike' functionality ?
|
I'm using official Mongo C# driver. As suggested in answer to one question I'm using the following for the 'like' operator - Query.Matches("name", "Joe"); My question is how can I achieve the 'NotLike' functionality ? |
|||
|
|
|
Assuming you are using the new Query builder in version 1.5, you would do it this way:
In version 1.5 we also introduced a new typed Query builder, which you could use this way:
Finally, you could also write a LINQ query:
|
|||
|
|