cs11dotnet7/vscode/PracticalApps/Northwind.Common.EntityModels.SqlServer/OrderDetail.cs

33 lines
1 KiB
C#
Raw Normal View History

2022-03-13 17:17:01 +01:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace Packt.Shared
{
[Table("Order Details")]
[Index("OrderId", Name = "OrderId")]
[Index("OrderId", Name = "OrdersOrder_Details")]
[Index("ProductId", Name = "ProductId")]
[Index("ProductId", Name = "ProductsOrder_Details")]
public partial class OrderDetail
{
[Key]
public int OrderId { get; set; }
[Key]
public int ProductId { get; set; }
[Column(TypeName = "money")]
public decimal UnitPrice { get; set; }
public short Quantity { get; set; }
public float Discount { get; set; }
[ForeignKey("OrderId")]
[InverseProperty("OrderDetails")]
public virtual Order Order { get; set; } = null!;
[ForeignKey("ProductId")]
[InverseProperty("OrderDetails")]
public virtual Product Product { get; set; } = null!;
}
}