Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

SqlServerManager.Context.cs 1.0KB

12345678910111213141516171819202122232425262728293031
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace WebAPiUtils_test.DataAccess
  10. {
  11. using System;
  12. using System.Data.Entity;
  13. using System.Data.Entity.Infrastructure;
  14. public partial class SqlServerManagerEntities : DbContext
  15. {
  16. public SqlServerManagerEntities()
  17. : base("name=SqlServerManagerEntities")
  18. {
  19. }
  20. protected override void OnModelCreating(DbModelBuilder modelBuilder)
  21. {
  22. throw new UnintentionalCodeFirstException();
  23. }
  24. public virtual DbSet<T_SqlManager> T_SqlManager { get; set; }
  25. public virtual DbSet<T_Text> T_Text { get; set; }
  26. }
  27. }