I am using mongodb driver in c#. I can create query for CRUD operations sqlserver in c# . But i need to Create query for mongodb and execute it . For an sample i attached Delete Delete Query
string query = string.Format("DELETE FROM {0} WHERE {1}"
ExecuteNonquery method i can execute it in sqlConnection
How i do this in mongodb?