Issue with templateArguments
description
The Razor.cs class in the project DDRMenu_NET4.0 throw an exeption when she try to affecte the parameter from templateArguments to the model.
-- Patch replace in the Execute function :
foreach (var arg in templateArguments)
{
model[arg.Key] = arg.Value;
}
with :
var dicModel = model as IDictionary<string, object>;
foreach (var arg in templateArguments)
{
dicModel[arg.Key] = arg.Value;
}