I am trying to use SmartFormat and I have an issue with it. I am using the following format
"{SelectedUsers:| {User.FirstName} is selected for '{Job.Summary} job. ', }"
and I am expecting that the output will be like following for each item. (If the first item in the collection has values 'Joe' as User.FirstName and 'witch hunting' as Job.Summary )
"Joe is selecting for 'witch hunting' job."
and so on display other items in the selected users collection. But the output is
{ User = { FirstName = Test }, Job = { Summary = Job Summary } }
I am not sure if my syntaxt is wrong or the given feature is not implemented in SmartFormat. Any help is much appreciated.