up vote 7 down vote favorite
3
share [g+] share [fb]

Is there a production grade SimpleDB library, preferable built in C#. If not, May I use the VB.NET library on a C# project as a reference?

link|improve this question

70% accept rate
feedback

8 Answers

Amazon just recently released the AWS SDK for .NET. It's a step up from their prior offerings as far as I've seen (though I'm admittedly very new to the AWS thus far.)

link|improve this answer
The AWS SDK for .NET simply repackages Amazon's prior offerings for various services into a single library. The biggest change is that Amazon is now committed to maintaining and versioning these libraries that were previously released as demonstration projects. – Ashley Tate Feb 22 '10 at 20:26
feedback

Check out Mindscape's LightSpeed that supports SimpleDB ORM out of the box. They have a beta product called SimpleDB Management Tools for $29 USD that is in beta, but these guys produce great software so my suggestion would be to investigate and feedback to them.

The plus side is you get a great ORM for other uses.

link|improve this answer
Just for info, SimpleDB Management Tools is now in full production release. – itowlson Oct 15 '09 at 20:03
feedback

You may want to check out Simol, an open-source .NET persistence library designed specifically for SimpleDB (I'm the creator). The first release was several years ago, and it's in use by quite a few applications. I keep a partial list of the applications I know about here.

link|improve this answer
feedback

Amazon provides a C# version of their SimpleDB library at http://developer.amazonwebservices.com/connect/entry.jspa?externalID=1133

But also: assuming you have Visual Studio or at least the .NET Framework SDK, you could compile Amazon's SimpleDB library as a DLL, then include the file and reference it in your C# project and that would work pretty much the same way.

link|improve this answer
See comment for @Rik's link – Ralph Lavelle Jan 10 '11 at 10:34
feedback

Here you will find a C# SimpleDB library

There's also an open source SimpleDB provider, which you can find here, which might come in handy.

link|improve this answer
Have you used the SimpleDB provider (Linq2SQL), it looks like it has not been maintained. Any opinions? – Geo Oct 7 '09 at 18:39
"Error. We were unable to find the page you requested" – Ralph Lavelle Jan 10 '11 at 10:34
Link is dead. Looks like new link is aws.amazon.com/sdkfornet – Dan Esparza Apr 26 '11 at 21:27
feedback

Check out Stratosphere. It's open source, C#, Mono compatible library for SimpleDB, SQS and S3. Supports latest conditional updates and consistent reads. Includes local implementation based on SQLite that closely mimics SimpleDB for unit testing etc. Also has local file system implementations for S3 and SQS APIs. Additional download contains command line utility for managing SimpleDB, SQS and S3.

link|improve this answer
feedback

For a commercially supported solution, check out the /n software Amazon Integrator - http://www.nsoftware.com/ibiz/amazon. Includes components for .NET, as well as Java, C++, COM, Delphi etc.

link|improve this answer
feedback

I just released a library on my site for free. I'm using it for our internal applications and have made it available for anyone else that wants to use it. The library uses T4 Text Templates to code generate classes for each domain. It uses the GNU software license.

You can download the entire solution including source code at http://www.exspartners.com/SimpleDBDotNetLibrary.aspx.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.