What are the alternatives for data creation plans for Visual Studio Express users?

I am wondering if there is a good option for those of us who use Express (or even Professional), without having to go beyond the scope of a Visual Studio project (for example, write a ruby ​​/ perl / etc script to populate test / seed data).

If this helps, I am working on a C # .NET MVC 2 application in MS Web Developer 2010.

+7
c # visual-studio data-generation
source share
1 answer

nBuilder

What is it?

Through a free, extensible interface, NBuilder allows you to quickly create test data by automatically assigning property values ​​and public fields that are embedded data types like .NET types (for example, ints and strings). NBuilder allows you to override properties that interest you in lambda expressions.

NBuilder is an open source project hosted in google code

There is an episode of Polymorphic Podcast that discusses with the creator of nBuilder.

+4
source share

All Articles