zoukankan      html  css  js  c++  java
  • entityframwork

    entityframwork映射部分:

      public class NorthwindContext : DbContext
        {
    
    
          
    
            public DbSet<CATEGORIES> Categories { get; set; }
            public DbSet<CUSTOMERS> Customers { get; set; }
            public DbSet<EMPLOYEES> Employees { get; set; }
            public DbSet<PRODUCTS> Products { get; set; }
            public DbSet<ORDERS> Orders { get; set; }
            public DbSet<SUPPLIERS> Suppliers { get; set; }
            public DbSet<SHIPPERS> Shippers { get; set; }
            public DbSet<ORDER_DETAILS> Order_Details { get; set; }
           
    
            protected override void OnModelCreating(DbModelBuilder modelBuilder)
            {
    
                modelBuilder.Entity<CATEGORIES>().ToTable("CATEGORIES", "TEMP");
                modelBuilder.Entity<CUSTOMERS>().ToTable("CUSTOMERS", "TEMP");
                modelBuilder.Entity<EMPLOYEES>().ToTable("EMPLOYEES", "TEMP");
                modelBuilder.Entity<PRODUCTS>().ToTable("PRODUCTS", "TEMP");
                modelBuilder.Entity<ORDERS>().ToTable("ORDERS", "TEMP");
                modelBuilder.Entity<SUPPLIERS>().ToTable("SUPPLIERS", "TEMP");
                modelBuilder.Entity<SHIPPERS>().ToTable("SHIPPERS", "TEMP");
                modelBuilder.Entity<ORDER_DETAILS>().ToTable("ORDER_DETAILS", "TEMP");
                
    
             
                modelBuilder.Entity<SUPPLIERS>().HasMany(b => b.Products1).WithRequired(a => a.SUPPLIERS1);
                modelBuilder.Entity<EMPLOYEES>().HasMany(b => b.Employees1).WithRequired(a => a.Employees2);
                modelBuilder.Entity<CUSTOMERS>().HasMany(b => b.Orders).WithRequired(a => a.Customers);
                modelBuilder.Entity<EMPLOYEES>().HasMany(b => b.Orders).WithRequired(a => a.Employees);
                modelBuilder.Entity<CATEGORIES>().HasMany(b => b.Products).WithRequired(a => a.CATEGORIES);
                modelBuilder.Conventions.Remove<System.Data.Entity.ModelConfiguration.Conventions.ColumnTypeCasingConvention>();
    
    
           
           
                base.OnModelCreating(modelBuilder);
            }
        }
    

      

    STUDTY HARD FOR .NET
  • 相关阅读:
    sicp-py
    Ubuntu下找不到ttyUSB*问题解决
    Mysql基本命令及数据库存储位置
    open-vm-tools与VMware Tools
    64位ubuntu安装交叉编译工具链,显示找不到命令
    VMware Tools 继续运行脚本未能在虚拟机中成功运行。
    VMware Workstation 14安装VMware Tools
    VMware Workstation14 安装Ubuntu18.04
    Linux安装Sqlite
    mysql中文乱码
  • 原文地址:https://www.cnblogs.com/zhishuru/p/3245200.html
Copyright © 2011-2022 走看看