This question is locked. New answers and comments are not allowed.
I have 2 [Persistent] classes: Person and Test:
01.[Persistent] 02.class Person 03.{ 04. string Name {get; set;} 05. float Weight {get; set;} 06.} 07. 08.[Persistent] 09.class Test 10.{ 11. string Name {get; set;} 12. Person PersonData {get; set;} 13.}Each Person makes a Load Test (in bicycle).
Person is saved in Test. But I need to save it without any links. So if in table [Person] current Person will be changed (Name or Weight) - in table [Test] field PersonData should stay in initial state (with not changed Name and Weight).
Should I use BLOB for PersonData?
Or something else?