Files
StockMan/StockManMVC/Models/SMModel.Context.cs
T
Samuele E. Locatelli ca4cd6c15c Rifacimento DB e sync
ora la struttura è + coerente, iniziato emrge dati, chiavi tutte SURROGATE con ID
2016-09-21 16:14:09 +02:00

38 lines
1.4 KiB
C#

//------------------------------------------------------------------------------
// <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 StockManMVC.Models
{
using System;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
public partial class StockManEntities : DbContext
{
public StockManEntities()
: base("name=StockManEntities")
{
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
throw new UnintentionalCodeFirstException();
}
public virtual DbSet<Item> Item { get; set; }
public virtual DbSet<ItemFlux> ItemFlux { get; set; }
public virtual DbSet<ItemStock> ItemStock { get; set; }
public virtual DbSet<Location> Location { get; set; }
public virtual DbSet<LocType> LocType { get; set; }
public virtual DbSet<MovType> MovType { get; set; }
public virtual DbSet<vItemFlux2Save> vItemFlux2Save { get; set; }
public virtual DbSet<vLocationVal> vLocationVal { get; set; }
}
}