* Updated database design where BLOB columns have been replaced with TEXT columns to store XML instead. * Replaced BinaryConverter with XmlSerializers. ** This will make 'fingerprints' of ProjectEntity more stable across commits as Binary serialization by .Net framework stores assembly version in the serialized data. Our version code is commit dependent therefore each commit would generated a different fingerprint even though the data it's based upon isn't changed. Xml Serialization does not suffer from this side-effect. ** Common serialization code now stored in an abstract base-class. * Renamed FingerprintGenerator to FingerprintHelper. * Moved BinaryDataEqualityHelper into FingerprintHelper. Related to Issue [WTI-608] git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@4586 5a3db67b-de53-47b5-99c8-a1c30a6650e2
* Updated entities such that primary key property of GrassCoverErosionInwardsOutputEntity now follows naming convention. * Performance optimization in PersistenceRegistry to prevent EntityFramework from checking 'changed state' when no elements are actually removed from a collection. * Extended RingtoetsEntities with a flag to disabling change tracking ** Improved performance of retrieving elements from data base tables with IStorableExtensions. Related to Issue [WTI-608]