Jammer.NET - Open Source C# Software Development Framework

Open Source C# Software Development Framework

Jammer.NET API Documentation

Posted by Randolph Cabral on Thursday August 9, 2007

Our Sandcastle documentation for Jammer.NET is up!

Check it out at:

 http://jmr.bongeek.com/

Special thanks to Mohammed Mudassir Azeemi for his generousity in hosting our docs! He’s one of the finest .NET developers in the open source community!

Click here for more information about Microsoft’s Sandcastle project.

2 Responses to “Jammer.NET API Documentation”

  1. Meysam sadeghi Says:

    Hello, hope fine.
    I would like to use your code generator, but program give me error: The requested database EducationDb is not defined in configuration. “EducationDb is my database”
    I am app.config that has below code:

    <configuration>
    <connectionStrings>
    <add name =”ConnectionString” connectionString=”Data Source=.;Initial Catalog=EducationDb;Integrated Security=True” providerName =”System.Data.SqlClient”/>
    </connectionStrings>

    But I cant link my connection to your sqlConnection that you use in your code generator.
    How do I can link my ConnectionString to your code generator?
    Please help me to solve my problem.

  2. Randolph Cabral Says:

    Hello Meysam Sadeghi,

    The reason you are getting this message is because the “name” attribute value of the “add” element connection string section needs to be “EducationDb”.

    Like this:

    <add name =”EducationDb” connectionString=”Data Source=.;Initial Catalog=EducationDb;Integrated Security=True” providerName =”System.Data.SqlClient”/>

    Once this is done, the error should go away.

    Hope this helps!
    -Randolph Cabral

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>