views:

5

answers:

0

What's the easiest way to exclude a column from the result set in a Subsonic/ActiveRecord/Linq query?

I've a got a table of images, and often I only want the meta data associated with the image (image id/name/dimensions for example). Seems fairly wasteful to be pulling in the entire image data for these requests.

My current thought is to split out the image data to a separate table, but I'm wondering if there's an easier/better way.