-
-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add property FbCommand.NamedParameters (#1161) #1164
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same changes should go into FbBatchCommand
as well.
@@ -198,6 +198,16 @@ public int FetchSize | |||
} | |||
} | |||
|
|||
/// <summary> | |||
/// Gets collection of parameters parsed from the query text by <see cref="NamedParametersParser"/> during command prepare. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to mention NamedParametersParser
. It's an implementation detail.
/// <summary> | ||
/// Gets collection of parameters parsed from the query text by <see cref="NamedParametersParser"/> during command prepare. | ||
/// </summary> | ||
[Category("Data")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not needed for getter-only properties. In fact it should be maybe hidden for designers.
/// Gets collection of parameters parsed from the query text by <see cref="NamedParametersParser"/> during command prepare. | ||
/// </summary> | ||
[Category("Data")] | ||
[DefaultValue(new string[] { })] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not needed for getter-only properties. In fact it should be maybe hidden for designers.
Hi,
Are the property attributes correct?
Does the test tests the property properly?
Please let me know if you see an issue.
Thank you
Best regards
Daniel Trubač