In SQLServer 2008 stored procedures, SUBSTRING can be used to return only part of a varbinary(MAX) column at a time from a query.
Is a similar feature available when using LINQ To SQL via C# directly in the code?
EDIT: I mean so that only a set number of bytes are loaded in code from the database and not the entire blob each time only a part of the data is required.
Thanks for any help.
EDIT: Seeing as there has been only one answer, I take it that this can't be done, so I'm accepting the first answer.