Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
公式の c# ドライバーを使用して、mongodb で次の SQL クエリを実行するにはどうすればよいですか?
Select * from tblUser where FirstName Like '%as%'
これを行う方法を理解しました。Query.Matches を使用する必要があります
var query = Query.Matches("FirstName", ".*as.*");