I am building out this application that keeps revisions of files in the database. Each time a file is checked back in, a new revision is made.
My problem...
It doesn't seem there is a way to omit a field when you fetch an entity.
For example, lets say I have some big file as field4
I would have this SQL:
select field1,field2,field3 from sometable
This would allow me to grab the other fields about the file revision, without fetching that HUGE file for every revision. This would kill my server if x clients were all pulling info on 10 files with 300 revisions.
I could create a view for this, but that shouldn't be necessary in this case. Could omitting a field be supported Otis?