We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
yup, that's how we handle that in mcdev - thank you for your patience & for using this SDK, Ivan :)
I can recommend looking into that project if you have a problem with the SDK and want to check how it might work.
your first approach would have created sth like
bad:
"Fields": [ { "Name": "CreatedDate", "IsRequired": false, "Ordinal": 2, "IsPrimaryKey": false, "FieldType": "Date" } ]
which would create:
<Fields>...</Fields> <Fields>...</Fields> <Fields>...</Fields>
good:
"Fields": { "Field": [ { "Name": "CreatedDate", "IsRequired": false, "Ordinal": 2, "IsPrimaryKey": false, "FieldType": "Date" } ] }
which correctly creates:
<Fields> <Field>...</Field> <Field>...</Field> <Field>...</Field> </Fields>
Originally posted by @JoernBerkefeld in #299 (comment)
The text was updated successfully, but these errors were encountered:
JoernBerkefeld
No branches or pull requests
I can recommend looking into that project if you have a problem with the SDK and want to check how it might work.
your first approach would have created sth like
bad:
which would create:
good:
which correctly creates:
Originally posted by @JoernBerkefeld in #299 (comment)
The text was updated successfully, but these errors were encountered: