I am using Entity Framework as part of a project that should allow students and trainers to up- and download files and directories.
In order to show the documents I make a call to the db:
public static ObjectSet<Document> doc = frmFocus._context.Documents;
But this delivers all the properties including the actual data of the files. What I would like to do is retrieve only those that are relevant to the listview until the files to download have been selected.
Is this possible? I haven't been able to find a way.