I've one object User which can have multiple Posts.
Example:
Load the user with lazy loading on the Posts IList<User> users = User.LoadAll()
Then I want to read only "half" of the users[2].Posts[3]
(retrieve only the attributes that I want and not all of them from that post object), is this possible to make?
(Note, I do not want to use a View).
Edit: Could someone give me a simple example code please? I tried to find one without success. Thanks