You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was looking for a way to re-create a BinaryRow object from a previously serialized bytes, but couldn't find it. The row format guide has an example of converting an object into a BinaryRow, which is not quite what I need.
What I am looking for is the following workflow:
Serialize my object into a byte array
Store the byte array... somewhere
Retrieve the byte array later on
Construct a BinaryRow from the byte array
Access parts of the original objects via the BinaryRow as shown in the guide without necessarily reconstructing the entire object
Any chance someone can tell me how to do that? An update to the guide would be awesome, too.
The text was updated successfully, but these errors were encountered:
Question
I was looking for a way to re-create a
BinaryRow
object from a previously serialized bytes, but couldn't find it. The row format guide has an example of converting an object into aBinaryRow
, which is not quite what I need.What I am looking for is the following workflow:
BinaryRow
from the byte arrayBinaryRow
as shown in the guide without necessarily reconstructing the entire objectAny chance someone can tell me how to do that? An update to the guide would be awesome, too.
The text was updated successfully, but these errors were encountered: