why we can't Serialize these objects ? - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T11:40:41Zhttp://stackoverflow.com/feeds/question/1318702http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1318702/why-we-cant-serialize-these-objects0why we can't Serialize these objects ?mavrichttp://stackoverflow.com/users/1144342009-08-23T14:26:35Z2009-08-23T15:42:52Z
<p>why we can't Serialize objects into Random Access file ? and on the other hand we can serialize objects into sequential access file ?</p>
<p>""C# does not provide a means to obtain an object’s size at runtime. This means that,
if we serialize the class, we cannot guarantee a fixed-length record size "" (from the book that i read in).</p>
<p>so we cannot read the the random access file because we don't know every object size in the file so how we could do seeking ??????</p>
http://stackoverflow.com/questions/1318702/why-we-cant-serialize-these-objects/1318708#13187081Answer by Cecil Has a Name for why we can't Serialize these objects ?Cecil Has a Namehttp://stackoverflow.com/users/832392009-08-23T14:32:37Z2009-08-23T15:42:52Z<p>Any object marked with the <code>SerializableAttribute</code> attribute can be serialized (in most scenarios). The result from serialization is always directed to a stream, which may very well be a file output stream.</p>
<p>Are you asking why an object graph cannot be deserialized partially? .NET serialization only [de]serializes complete object graphs. Otherwise you'll have to turn to other serialization formatters, or write your own.</p>
<p>For direct random access to a file, you must open the file with a stream that supports seeking.</p>
<p>EDIT:</p>
<p>Seeking in the resulting stream from a serialization has no practical purpose - only the serialiation formatter knows what's in there anyway and should always be fed the very start of the stream.</p>
<p>For persisting the data into other structures; do it in a two-stage process: First, target the serialization bytes to a [i.e. memory-backed] stream that you can read the size from afterwards, then write the data to the actual backing store, using said knowledge of size.</p>
<p>You can't predict the size of a serialized object, because the serialized representation might differ a lot from the runtime representation.</p>
<p>It it still possible to achieve exact control over output size, if you use only primitive types, and you write using a BinaryWriter - but that is not serialization per-se.</p>
http://stackoverflow.com/questions/1318702/why-we-cant-serialize-these-objects/1318810#13188100Answer by Allon for why we can't Serialize these objects ?Allonhttp://stackoverflow.com/users/1492652009-08-23T15:30:09Z2009-08-23T15:30:09Z<p>The default binary serialization in .NET serializes a whole object graph, which, by its nature of being a graph, doesn't have a constant size, which means each serialization object (record) won't have a constant size, preventing random access.</p>
<p>To be able to randomly access any record in a file, write your own implementation of the binary serialization of your class, or use a database. If you need a simple, no-install single-threaded database engine, have a look at <a href="http://www.microsoft.com/sqlserver/2008/en/us/compact.aspx" rel="nofollow">SQL Server Compact</a>.</p>