ASP.NET MVC, Linq to SQL Data Annotation Validation

扶醉桌前 提交于 2019-12-03 18:30:33

问题


I'm trying implement Data Annotation to my Linq to SQL objects. The .dbml file is generated and I'm not sure how to add data annotation to the objects without touching the generated source code.

I tried to add data annotations to the a separate partial class of the object, but its not recognizing it, no Intelli sense either.


回答1:


As I said in my original answer to this question, you should use an interface. The answer posted after mine (which was marked as Accepted) said to use a class. This is not as good. An interface is a better option for the following reasons:

  • If there is a mismatch between the name in your LINQ class and the name in your interface, the compiler will flag it for you
  • An interface can not be instantiated, so this protects class users from accidentally instatntiating the metadata type
  • If you use Resharper (or similar), the interface can be automatically extracted from the LINQ class
  • An interface is less verbose than an empty class
  • If you program against interfaces rather than classes (which is a good practice), then you've already got an interface you can use as your metadata type

For a class called, say "User", create an interface for it (say 'IUser'), and then update the definition of your partial User class as follows:

[MetadataType(typeof(IUser))]
public class User : IUser

Then, in your IUser interface, add appropriate Data Annotation attributes to the properties:

[Required]       
[StringLength(50, ErrorMessage = "Username cannot exceed 50 characters")]
string Username { get; set; }



回答2:


For a class called, say "User", create an interface for it (say 'IUser'), and then update the definition of your partial User class as follows:

[MetadataType(typeof(IUser))]
public class User : IUser

Then, in your IUser interface, add appropriate Data Annotation attributes to the properties:

[Required]       
[StringLength(50, ErrorMessage = "Username cannot exceed 50 characters")]
string Username { get; set; }



回答3:


Linq to SQL generates object classes as partial. An easy way to implement data annotations is to create your own partial class of the object, place the [MetadataType(typeof(YourDataAnnotationClass))] on the partial class you created.

Example:

// Linq to SQL Class
public partial class Article 
{
   public string Title { get; set; }
   ...... etc
}

Create your own MetaData class with Metadata for each field you want to validate

public class MyMetaDataClass
{
    [Required]
    [Range(5,20)]
    public string Title { get; set; }
}

Create a Partial Class for the Object class you want to add metadata to, in this case Articles class:

[MetadataType(typeof(MyMetaDataClass))]
public partial class Article { }

Note: you don't need to specify anything in the class, just the metadata type.




回答4:


Thanks,but the problem is MS define the prototype of MetadataTypeAttrubute as

[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public sealed class MetadataTypeAttribute : Attribute

So, you had to use class but not interface


From China Forest Lee: 李晓强 xiaoqianglinsen@163.com (MSN) lixiaoqiang@webservice.com.cn



来源:https://stackoverflow.com/questions/1535662/asp-net-mvc-linq-to-sql-data-annotation-validation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!