As always, forgive me my bad english... Consider the follow: I have in my application a singleton object ("AppInfo") that holds some important data. All my tables have a field "USER". I create a property on AppInfo that once accessed, create (if doesn't exist yet) a instance of the entity "USER" or simply returns it if it was already created before. Now, on my application when I need to save something, lets say an order: Entities context = new Entities(); Order order = new Order(); order.code = 1;
Read More...