-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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 support for parameters of type TimeSpan to SqlFilter #7325
Conversation
Can one of the admins verify this patch? |
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.
@@ -16,6 +16,7 @@ internal class ManagementClientConstants | |||
public const string SbNs = "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"; | |||
public const string XmlSchemaInstanceNs = "http://www.w3.org/2001/XMLSchema-instance"; | |||
public const string XmlSchemaNs = "http://www.w3.org/2001/XMLSchema"; | |||
public const string SerializationNamespace = "http://schemas.microsoft.com/2003/10/Serialization/"; |
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.
nit: The other members of this file use Ns
where this uses Namespace
; maybe we should consider unifying on one representation? Personally, my preference goes to Namespace
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.
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.
I am good with either.
@SeanFeldman, you can take the call to go either way :)
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.
Will be addressed in #7399
@SeanFeldman, The changes look good to me. Let me know whenever you are ready to merge, and I can merge it in! |
@axisc I guess you and @jsquire didn't read through #7325 (comment) ... 🙂 I'll issue a separate PR. |
Fixes #6629