We are using a template with multiple IF conditions to control which sections are rendered based on specific conditions. Ideally, fields should only be rendered if the condition is met. However, in our case, if the fields do not exist in the data source, an error is thrown.
I am aware that enabling AllowMissingMembers can prevent these errors, but I do not want this setting to be enabled by default, as I need to detect missing fields when they are genuinely required.
What we need is:
If the condition is met, but a required field within the IF statement is missing, it should throw an error.
If the condition is not met, the entire section should be ignored without error.
Could you provide an option or workaround to achieve this behavior?
@pphillipsbiz LINQ Reporting Engine parses a template document as a whole before evaluating any expression. The engine does not skip parsing of expressions, which are not going to be evaluated according to template logic and data. This is by design.
You can use ReportBuildOptions.AllowMissingMembers. If this option is set, the engine does not throws an exception when encounters a missing object member. Please see our documentation for more information: https://docs.aspose.com/words/net/accessing-missing-members-of-data-objects/
Of course, you can use an object of any custom type (without violating encapsulation) as a data source or for invocation of its static members. See Accessing Type Members for details.
Not all JSON elements can be casted to DataRow. However, if such a typecast works in your case, then you can use DataRow as a parameter type for TemplateSupport.Lookup.
Casting JSON elements to DataRow is related to details of JsonDataSource’s internal implementation. Therefore, this is not a recommended technique at all.
This requirement can be fullfilled in another way:
I am afraid, from the description, it is not clear enough what the problem is. You can process values of different types differently providing special handling of DataRow, if needed.
I cannot cast value to System.Data.DataRow, even though as you can see the object is System.Data.DataRow. I believe this is because you have obfuscated your code ({mK}).
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.