Coder Social home page Coder Social logo

Comments (6)

mykemaas avatar mykemaas commented on August 15, 2024

I was curious, so I tried your sample. It looks like the trouble is that the SerializeToStream method does serialize the object, but leaves the stream's position at the end of the serialized object. You'll need to add this:

stream.Seek(0, SeekOrigin.Begin);

So, ultimately, the method looks like this:

    public static MemoryStream SerializeToStream(object o) {
        MemoryStream stream = new MemoryStream();
        IFormatter formatter = new BinaryFormatter();
        formatter.Serialize(stream, o);
        stream.Seek(0, SeekOrigin.Begin);
        return stream;
    }

This will set the stream position at the beginning, so that when it is persisted in the database, it reads the whole stream.

Hope this helps.

from litedb.

sherry-ummen avatar sherry-ummen commented on August 15, 2024

Very interesting.

How did you find about it?

Sent from my Windows Phone


From: Mykemailto:[email protected]
Sent: ‎02-‎09-‎2015 23:40
To: mbdavid/LiteDBmailto:[email protected]
Cc: Sherry Ummenmailto:[email protected]
Subject: Re: [LiteDB] Not able to Retrieve back the stored C# object stored as Stream in FileStorage (#54)

I was curious, so I tried your sample. It looks like the trouble is that the SerializeToStream method does serialize the object, but leaves the stream's position at the end of the serialized object. You'll need to add this:

stream.Seek(0, SeekOrigin.Begin);

So, ultimately, the method looks like this:

    public static MemoryStream SerializeToStream(object o) {
        MemoryStream stream = new MemoryStream();
        IFormatter formatter = new BinaryFormatter();
        formatter.Serialize(stream, o);
        stream.Seek(0, SeekOrigin.Begin);
        return stream;
    }

This will set the stream position at the beginning, so that when it is persisted in the database, it reads the whole stream.

Hope this helps.


Reply to this email directly or view it on GitHub:
#54 (comment)

from litedb.

mykemaas avatar mykemaas commented on August 15, 2024

I've made the same mistake 😄

It's not really an issue with LiteDB... Any library that reads from a stream always reads from the current position. This gives you the ability to set the stream to an appropriate position before passing it in. I've been bitten by this one before in an unrelated case, but that experience let me recognize the issue right off.

from litedb.

sherry-ummen avatar sherry-ummen commented on August 15, 2024

Very nice. I will try this in few hours as its quite late here in Finland n I shoul get some sleep. Thanks

Sent from my Windows Phone


From: Mykemailto:[email protected]
Sent: ‎03-‎09-‎2015 00:06
To: mbdavid/LiteDBmailto:[email protected]
Cc: Sherry Ummenmailto:[email protected]
Subject: Re: [LiteDB] Not able to Retrieve back the stored C# object stored as Stream in FileStorage (#54)

I've made the same mistake 😄

It's not really an issue with LiteDB... Any library that reads from a stream always reads from the current position. This gives you the ability to set the stream to an appropriate position before passing it in. I've been bitten by this one before in an unrelated case, but that experience let me recognize the issue right off.


Reply to this email directly or view it on GitHub:
#54 (comment)

from litedb.

mbdavid avatar mbdavid commented on August 15, 2024

Hi @sherry-ummen! @mykemaas is right, LiteDB use stream from current position. But, the best solution could be implement Write operation in LiteFileStream. It's not a simple think, so I just throw a not implement exception. This custom Stream was a contribution from other old project FileDB that I wrote 5 year ago.

from litedb.

sherry-ummen avatar sherry-ummen commented on August 15, 2024

Great thanks Myke and Mauricio. it worked

from litedb.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.