BinderSample.Web.MyHttpApplication.Application_Start C# (CSharp) Method

Application_Start() protected method

protected Application_Start ( Object sender, EventArgs e ) : void
sender Object
e System.EventArgs
return void
		protected void Application_Start(Object sender, EventArgs e)
		{
			IConfigurationSource source = ActiveRecordSectionHandler.Instance;

			ActiveRecordStarter.Initialize( source, typeof(Book), typeof(Publisher));

			ActiveRecordStarter.GenerateCreationScripts("../schema.sql");

			// ActiveRecordStarter.CreateSchema();
		}