using System.ComponentModel.DataAnnotations.Schema; namespace Entidades { public class DetalleFactura: Detalle { public int IdFactura { get; set; } [NotMapped] public double Subtotal { get { return Producto.Precio * Cantidad; } } } }