4

What is the best realization of GridFS C# driver? What is your experience?

Update:

When i say "best" - i mean stability.

Thank you!!!

Edward83
  • 6,664
  • 14
  • 74
  • 102
  • 1
    When you say best realization, what exactly do you mean? Ease of use, performance, feature support? – Justin Jenkins Nov 30 '10 at 01:41
  • @Justin thank you! I mean no leaking memory, minimum bugs, nice connection-exception handling etc. As i found samus driver sometimes blocks connections to MongoDB if something was wrong while adding new file, so i need to restart database. But maybe driver is ok and i made very fast tests. – Edward83 Nov 30 '10 at 01:50

2 Answers2

5

I am using official mongodb driver and it work perfect for me.

If you want you can check how to save and read back file using official c# driver.

Community
  • 1
  • 1
Andrew Orsich
  • 52,935
  • 16
  • 139
  • 134
  • @Howard: just fyi: i am currently using gridfs in one my project i really like how it work, in additional in latest mongovue was added better gridfs support. – Andrew Orsich Feb 23 '11 at 21:14
1

I am using the official driver and it seems to work well.

I tried using the mongodb-csharp driver from Sam Corder but never could get GridFS to work properly (though, it is a great driver for LINQ style queries, etc).

Bryan Migliorisi
  • 8,982
  • 4
  • 34
  • 47