123456789101112131415161718192021222324252627282930 |
-
- namespace test111
- {
- using System;
- using System.Data.Entity;
- using System.Data.Entity.Infrastructure;
-
- public partial class test111Entities : DbContext
- {
- public test111Entities()
- : base("name=test111Entities")
- {
- }
-
- protected override void OnModelCreating(DbModelBuilder modelBuilder)
- {
- throw new UnintentionalCodeFirstException();
- }
-
- public virtual DbSet<C111> C111 { get; set; }
- }
- }
|