Using your Person Data Collection from the example... I would like to query the Table and only return the Data for column _Age. I know I can do a GetAll, and then get the single column from that... I'm just trying to keep things fast and only querying data that is needed. Something like this would be nice: var AllThePeeps = await manager.GetAll<Person>(); var AllTheAges = await manager.GetAll<Person,_Age>();