I have e.g. this record:
{
Id : "abc...",
Name : "John Smith",
List : [
{ Status : "failure abc" },
{ Status : "Success" },
/*
... many many more like that ...
*/
{ Status : "Last entry" }
]
}
The List
field is very very very long. Can I retrieve only the Id
and Name
fields, avoiding unnecessarily fetching whole List
to save time?
Or do I have to just keep the List
in its own collection
or as independent record entry?
(Preferably C#
code)