Linq + xml

Hi Simone,

It is to update you that the ReportBuildOptions.AllowMissingDataFields property is now renamed to ReportBuildOptions.AllowMissingMembers.

ReportBuildOptions.AllowMissingDataFields affected only fields of DataRow and IDataRecord instances. The option was introduced per WORDSNET-12380 for a single customer. Then, the customer returned complaining that he also needs master-detail relationships and extension methods to be affected. Thus, the option’s purpose had to be changed. That is why, the option was renamed as follows:

/// 
/// Specifies that missing object members should be treated as null literals by the engine. This option
/// affects only access to instance (that is, non-static) object members and extension methods. If this<br>/// option is not set, the engine throws an exception when encounters a missing object member.
/// AllowMissingMembers = 1

We decided simply to rename the option instead of introducing a new one, thus bringing a breaking change to the public API. We apologize for your inconvenience.

Best regards,

Thank you very much. It works as expected.

Simone