使用 Linq-to-SQL 时向模型类添加验证注释器

发布于 2024-08-27 09:53:29 字数 251 浏览 6 评论 0原文

当我的模型类自动生成时,如何将以下属性

[Required(ErrorMessage="...")]

添加到模型属性之一。

有一个解决方案这里,但它似乎仅适用于实体框架

How should I add the following attrubute

[Required(ErrorMessage="...")]

to one of the model properties when my model classes are automatically generated.

There is a solution here, but it seems to be working only on Entity Framework

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

若无相欠,怎会相见 2024-09-03 09:53:29

相同的解决方案也适用于 LINQ to SQL。本文显示的使用 MetadataType 的代码片段将与 LINQ to SQL 生成的类完美配合:

[MetadataType(typeof(MovieMetaData))]
public partial class Movie
{
}

public class MovieMetaData
{
    [Required]
    public object Title { get; set; }

    [Required]
    [StringLength(5)]
    public object Director { get; set; }


    [DisplayName("Date Released")]
    [Required]
    public object DateReleased { get; set; }
}

The same solution can be applied for LINQ to SQL. The snippet the article shows for using the MetadataType will use perfectly well with LINQ to SQL generated classes:

[MetadataType(typeof(MovieMetaData))]
public partial class Movie
{
}

public class MovieMetaData
{
    [Required]
    public object Title { get; set; }

    [Required]
    [StringLength(5)]
    public object Director { get; set; }


    [DisplayName("Date Released")]
    [Required]
    public object DateReleased { get; set; }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文