We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a77db10 commit 1662ac0Copy full SHA for 1662ac0
src/MySqlConnector/MySql.Data.MySqlClient/MySqlBatchCommand.cs
@@ -18,12 +18,13 @@ public MySqlBatchCommand(string? commandText)
18
19
public string? CommandText { get; set; }
20
public CommandType CommandType { get; set; }
21
- public bool AllowUserVariables => false;
22
public CommandBehavior CommandBehavior { get; set; }
23
public int RecordsAffected { get; set; }
24
25
public MySqlParameterCollection Parameters => m_parameterCollection ??= new MySqlParameterCollection();
26
+ bool IMySqlCommand.AllowUserVariables => false;
27
+
28
MySqlParameterCollection? IMySqlCommand.RawParameters => m_parameterCollection;
29
30
MySqlConnection? IMySqlCommand.Connection => Batch?.Connection;
0 commit comments