Recently made a component with state management using NGRX entity, where previously we have used straight up NGRX action->reducer->effect->selector.
From first impressions it seems to me that the design pattern expects you to load the total record set from your model into state, so thats what i did. Then I got thinking, what happens when this model starts to contain a lot of data.
So the question is, does entity make sense if you are only going to load a subset of data into state?
For example, if I load only a subset, then sorting a column in table of that data doesn't work (as a user would expect) when implemented as an action on the store.