-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModel1.Context.cs
More file actions
39 lines (35 loc) · 1.46 KB
/
Model1.Context.cs
File metadata and controls
39 lines (35 loc) · 1.46 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
//------------------------------------------------------------------------------
// <auto-generated>
// Este código se generó a partir de una plantilla.
//
// Los cambios manuales en este archivo pueden causar un comportamiento inesperado de la aplicación.
// Los cambios manuales en este archivo se sobrescribirán si se regenera el código.
// </auto-generated>
//------------------------------------------------------------------------------
namespace PBioSvc
{
using System;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
public partial class webappDBEntities : DbContext
{
public webappDBEntities()
: base("name=webappDBEntities")
{
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
throw new UnintentionalCodeFirstException();
}
public DbSet<Archivo> Archivo { get; set; }
public DbSet<Carpeta> Carpeta { get; set; }
public DbSet<EstadoSimulacion> EstadoSimulacion { get; set; }
public DbSet<Log> Log { get; set; }
public DbSet<MetodoClasificacion> MetodoClasificacion { get; set; }
public DbSet<MetodoSeleccion> MetodoSeleccion { get; set; }
public DbSet<Proyecto> Proyecto { get; set; }
public DbSet<Resultado> Resultado { get; set; }
public DbSet<Simulacion> Simulacion { get; set; }
public DbSet<sysdiagrams> sysdiagrams { get; set; }
}
}