Reputation: 6714
We are using SharpRepository. How can we do a LIKE call or use regex?
Upvotes: 0
Views: 45
Reputation: 13510
I'm not 100% sure what LINQ statements the MongoDb LINQ driver can handle, but I would start by trying something like
repo.Find(x => x.Name.Contains("jeff"));
Upvotes: 1