在更新时排除列

时间:2014-07-17 20:44:56

标签: c# entity-framework

在MVC应用程序中,我正在使用Entity Framework来实现这个简单的模型:

public class Product
{
    public Guid ProductID { get; set; }

    [Required]
    [StringLength(50, MinimumLength = 1)]
    [Display(Name = "Product name")]
    public string ProductName { get; set; }

    [Required]
    [Display(Name = "Download URL")]
    [DataType(DataType.Url)]
    public string DownloadUrl { get; set; }

    [Display(Name = "Download counter")]
    public int DownloadCounter { get; set; }
}

我自动拥有脚手架页面并有两个问题:

1 个答案:

答案 0 :(得分:0)

Ups,我应该花更多的时间在搜索上。第二个问题的答案在这里:

Exclude Property on Update in Entity Framework