You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was issuing a Rollup function call and passing in an enum type that needs to format to @pX=Microsoft.Dynamics.CRM.RollupType'Extended' but the function is adding the quotes in where it should not. Probably the best way to code this is to see if there are quotes in it already meaning that's already quoted/qualified or allow a function in its place that evaluates to the proper value to insert into the query parameter value. Otherwise, we have to use a wacky workaround. Related to #38.
I don't have that because I used ToString hack. But I recall that it was an enum. I passed in the enum through qopts so your code would test for the string and wrap it again i quotes:
I was issuing a Rollup function call and passing in an enum type that needs to format to
@pX=Microsoft.Dynamics.CRM.RollupType'Extended'
but the function is adding the quotes in where it should not. Probably the best way to code this is to see if there are quotes in it already meaning that's already quoted/qualified or allow a function in its place that evaluates to the proper value to insert into the query parameter value. Otherwise, we have to use a wacky workaround. Related to #38.Here's the code issue:
I worked around this by using:
Then
varToPassInParameters = new ToString("blah")
.The text was updated successfully, but these errors were encountered: