c# composite data type persistance

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • edurazee
    New Member
    • Dec 2009
    • 13

    c# composite data type persistance

    Can anyone show me an example of persisting Composite Data in c#?

    Suppose I have a hierarchy of Areas.

    How to achieve CRUD with Area?

    Should I use a Proxy class and how?
  • GaryTexmo
    Recognized Expert Top Contributor
    • Jul 2009
    • 1501

    #2
    You can always look into serialization.. . that should allow you to store your class between sessions.

    Try a google on "C# serialization". XML is the easiest way I know of, but I believe you can do binary as well with a little more work.

    Comment

    Working...