-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompdbEntities.Context.cs
More file actions
42 lines (38 loc) · 1.69 KB
/
Copy pathcompdbEntities.Context.cs
File metadata and controls
42 lines (38 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
namespace DBManager
{
using System;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
public partial class compdbEntities : DbContext
{
public compdbEntities()
: base("name=compdbEntities")
{
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
throw new UnintentionalCodeFirstException();
}
public virtual DbSet<additional_events_types> additional_events_types { get; set; }
public virtual DbSet<balls> balls { get; set; }
public virtual DbSet<coaches> coaches { get; set; }
public virtual DbSet<descriptions> descriptions { get; set; }
public virtual DbSet<falsestarts_rules> falsestarts_rules { get; set; }
public virtual DbSet<grades> grades { get; set; }
public virtual DbSet<groups> groups { get; set; }
public virtual DbSet<members> members { get; set; }
public virtual DbSet<participations> participations { get; set; }
public virtual DbSet<results_speed> results_speed { get; set; }
public virtual DbSet<round_dates> round_dates { get; set; }
public virtual DbSet<rounds> rounds { get; set; }
public virtual DbSet<teams> teams { get; set; }
}
}