Model.Context.cs 1.1 KB

123456789101112131415161718192021222324252627282930
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Этот код был создан из шаблона.
  4. //
  5. // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
  6. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace Harina_Lessons
  10. {
  11. using System;
  12. using System.Data.Entity;
  13. using System.Data.Entity.Infrastructure;
  14. public partial class Harina_LessonsEntities : DbContext
  15. {
  16. public Harina_LessonsEntities()
  17. : base("name=Harina_LessonsEntities")
  18. {
  19. }
  20. protected override void OnModelCreating(DbModelBuilder modelBuilder)
  21. {
  22. throw new UnintentionalCodeFirstException();
  23. }
  24. public DbSet<User> User { get; set; }
  25. }
  26. }