MVC中Model类复合主键的定义

1:新建Model类

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

namespace MVCMusicStore.Models
{
    public class OrderDetail
    {
        [Key,Column(Order=1)]
        public virtual int OrderId { get; set; }
        [Key, Column(Order = 2)]
        public virtual int LineNo { get; set; }
        public virtual string ItemNo { get; set; }
        public virtual string Description { get; set; }
        public virtual decimal Price { get; set; }
        public virtual decimal Quantity { get; set; }
        public virtual decimal Amount { get; set; }
        public virtual decimal LineDiscount { get; set; }
        public virtual decimal LineAmount { get; set; }
        public virtual Order Order { get; set; }
    }
}

 

2:创建Controller

3:创建好Controller后,可以看到生成的SQL表主键是由两个字段组成OrderId和LineNo

结论:

1:默认的主键是类的第一个字段;

2:如果需要修改默认的主键字段,需要添加命名空间;

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

3:在类的需要定义为主键的属性上添加Attribute Key和Column修饰

[Key,Column(Order=1)]

 

转载于:https://www.cnblogs.com/yuanhaowen/p/9482795.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值