In XPO:
Person p = new Person (Session);
p.Name = "Sam";
p.Save() method is not necessity ?
In Controller:
IObjectSpace objSpace = Application.CreateObjectSpace();
Object obj = new Person(session);
and Person's constructor need pass session.
How to get session in controller?
And the operation above for Different scenarios is right ?