//------------------------------------------------------------------------------
//
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
//
//------------------------------------------------------------------------------
namespace Neo.Afx.Admin.Form
{
using System;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
public partial class AfxAdminFormContext : DbContext
{
public AfxAdminFormContext()
: base("name=AfxAdminFormContext")
{
this.Configuration.LazyLoadingEnabled = false;
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
throw new UnintentionalCodeFirstException();
}
public virtual DbSet CaptureFields { get; set; }
public virtual DbSet ChecklistResults { get; set; }
public virtual DbSet ChecklistTemplateQuestions { get; set; }
public virtual DbSet ChecklistTemplates { get; set; }
public virtual DbSet ChecklistTemplateStatus { get; set; }
public virtual DbSet HyperLinks { get; set; }
public virtual DbSet LayoutDataSources { get; set; }
public virtual DbSet Layouts { get; set; }
}
}