Won't Fix
Last Updated: 23 Jan 2019 09:05 by ADMIN
ADMIN
Martin Ivanov
Created on: 24 Mar 2015 12:00
Category: PersistenceFramework
Type: Bug Report
2
PersistenceFramework: When the SerializationMetadataCollection is used, the framework saves more properties than expected.
The Expression property of the PropertyNameMetadata is used as a base for a Regex that is run against the property names of the object that is being serialized. Therefore, you should consider it a regex expression and set its value as in the following example:
- to match only the property "Width" - use the expression "^\b(Width)\b$", without the quotes.
- to match the "Width", "MinWidth" and "MaxWidth" - use the expression "Width", without the quotes.
0 comments