Hi,
I created a enterprise system model from a class diagram and converted it php object oriented code.
What I have now is just an empty model, it's able to relate and the connections are handled. Now the next step is ahead. I have a database and have to put the object into the database.
Now there is a lack of experience on my side. I have the model and since php renders a view and makes one time requests to render the view I'm a bit confused. It can't be possible to load all my entities out of the database and fill my model in memory and then use it because it would be way to large.
Does anybody know any ways to load just the needed data in my model and then use it? Maybe suggestions of a book or article?
Thanks!