using System.Data.Entity;
public static void Main()
Z.EntityFramework.Classic.EntityFrameworkManager.AddLicense("AddYourLicenseNameHere", "AddYourLicenseKeyHere");
string licenseErrorMessage;
if (!Z.EntityFramework.Classic.EntityFrameworkManager.ValidateLicense(out licenseErrorMessage))
throw new Exception("Oops, the current license is invalid. You must add a valid license instead of placeholders. Current error message:" + licenseErrorMessage);
using (var context = new EntityContext())
var list = context.Customers.ToList();
FiddleHelper.WriteTable("Customers", list);
public static void GenerateData()
using (var context = new EntityContext())
context.Customers.Add(new Customer() { Name ="Customer_A", Description = "Description", IsActive = true, LastLogin = new DateTime(2010,1,1) });
context.Customers.Add(new Customer() { Name ="Customer_B", Description = "Description", IsActive = true, LastLogin = new DateTime(2010,1,1) });
context.Customers.Add(new Customer() { Name ="Customer_C", Description = "Description", IsActive = true, LastLogin = DateTime.Now });
public class EntityContext : DbContext
public EntityContext() : base(FiddleHelper.GetConnectionStringSqlServer())
public DbSet<Customer> Customers { get; set; }
public int CustomerID { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public DateTime LastLogin { get; set; }
public Boolean IsActive { get; set; }