Technology, startups, health & entrepreneurial tidbits

Category Archives: Code Generation

SubSonic on GoDaddy Shared Hosting

I was trying to get SubSonic to run on a Free Hosting Environment (on GoDaddy) but unfortunately I kept getting a SecurityException when the code would attempt to save an entity. The code looked like this: faq.Save(); // Saves a faq item to the database. This code would save the new FAQ entity to the database.Continue Reading

CodeSmith Screencast

I recently finished a screen cast that demonstrates the use of Code Smith to create files based upon a database schema. The Haps In this screen cast I make a connection to the database, loop through each table in the database create a file based upon the table information. The file is exported to aContinue Reading

.NET Scaffolding

Jeremy D. Miller has a great post on keeping source code where it belongs. The thought process behind this is that code should be where YOU would assume it would be. If its data access code, it should be in a project/namespace that is something like Data Access or DAL or Data or something thatContinue Reading