-2
如何執行蒙戈通過C#.NET命令, 例如我們需要從C#代碼執行SQL INSERT命令,我們必須的ExecuteNonQuery()是存在的,如何執行蒙戈命令通過C#.NET
SqlConnection mycon = new SqlConnection(strcon);
mycon.Open();
string strquery = "INSERT INT0 studentDetails values('" + txtName.Text.ToString() + "','" + txtQual.Text.ToString() + "','" + txtAge.Text.ToString() + "','" + txtMobile.Text + "')";
SqlCommand cmd = new SqlCommand(strquery, mycon);
cmd.ExecuteNonQuery();
****以同樣的方式如何編寫用於執行mongodb查詢的c#代碼**
我改變問題的描述,這個問題的MongoDB(NOSQL)有關,C#.NET。 – Yesodhara