0

We are using SharpRepository. How can we do a LIKE call or use regex?

Community
  • 1
  • 1
savinger
  • 6,544
  • 9
  • 40
  • 57

1 Answers1

1

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"));
Jeff Treuting
  • 13,910
  • 8
  • 36
  • 47