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 18c726e commit 3b4cd96Copy full SHA for 3b4cd96
Provider/src/FirebirdSql.Data.FirebirdClient/FirebirdClient/FbCommand.cs
@@ -100,27 +100,13 @@ public override int CommandTimeout
100
[Browsable(false)]
101
public string CommandPlan
102
{
103
- get
104
- {
105
- if (_statement != null)
106
107
- return _statement.GetExecutionPlan();
108
- }
109
- return null;
110
+ get { return _statement?.GetExecutionPlan(); }
111
}
112
113
114
public string CommandExplainedPlan
115
116
117
118
119
120
- return _statement.GetExecutionExplainedPlan();
121
122
123
+ get { return _statement?.GetExecutionExplainedPlan(); }
124
125
126
[Category("Behavior")]
0 commit comments