标签: sql-server ado.net odbc
例如...在odbc中这很好......
string commandText = $"exec sp_InsertStudentMaster 'X', 'Y','Z'"; var command = new OdbcCommand(commandText,cn); command.CommandType = CommandType.StoredProcedure; command.ExecuteNonQuery();