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
  • 相关阅读:
    ThingJS之二十六问
    物联网开发,thingjs让您事半功倍!
    thingjs在线开发平台介绍
    jQuery· CSS样式方法
    jQuery属性
    jQuery效果
    JS事件委托中同一个标签执行不同操作
    js+php+mysql实现的学生成绩管理系统
    函数防抖
    两数之和
  • 原文地址:https://www.cnblogs.com/zhishuru/p/3245200.html
Copyright © 2011-2022 走看看