Skip to content

Commit

Permalink
1.0.61.0
Browse files Browse the repository at this point in the history
ConcatenateFromQuery:
- stop after n records parameter (thanks to https://github.com/stevenfayers)

CountChildEntityRecords:
- Add an option to specify the <filter> element of the FetchXML for the child entity. That will allow the user to count the child records with specific filter criteria (e.g. child records with Active status) (thanks to https://github.com/LinnZawWin)

GetMultiSelectOptionSet:
- new feature to get optionset values too (Thanks to https://github.com/ramontebar)

Resolve Case action:
- new action (thanks to https://github.com/ChrisMilton)

SetLookupFieldFromRecordUrl:
- new action (thanks to https://github.com/beyro)
  • Loading branch information
demianrasko committed Dec 28, 2020
1 parent 6c40d75 commit 2088601
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ protected override void Execute(CodeActivityContext executionContext)

if (t.Equals(typeof(string)))
{
sJson.Append("\"" + att + "\" : \"" + retrievedObject.Attributes[att].ToString().Replace("\\","\\\\") + "\"");
sJson.Append("\"" + att + "\" : \"" + retrievedObject.Attributes[att].ToString().Replace("\\","\\\\").Replace(@"""",@"""""") + "\"");
}
else if (t.Equals(typeof(bool)))
{
Expand Down

0 comments on commit 2088601

Please sign in to comment.