Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am developing a MVC application, I have used EF 4.0 while developing it.

I have created the classes from the model.

Now, I want to add more class for each class made by MVC.

ex. In below code, I get the class Location. Now, I want to create one more class(Partial class) How can I override properties in partial class ?

How to do that ?

namespace Cntities
{
public partial class Location
{

    public int Id { get; set; }


    public string Name { get; set; }

    public string Remark { get; set; }


    public string State { get; set; }


    public string Region { get; set; }


    public string PinCode { get; set; }


    public virtual ICollection<Comment> Comments { get; set; }
}

}
share|improve this question
What dou you mean by "overriding properties in partial class"? – Serg Rogovtsev Aug 4 '12 at 9:37
I want to put some validation on properties in partial class. For ex. I wan to add following code in partial class '[StringLength(50, ErrorMessage = "Region can accept maximum 50 characters.")] public string Region { get; set; }' – nilesh1foru Aug 4 '12 at 9:42
Why you cannot put in your current class? – Cuong Le Aug 4 '12 at 9:46
well, if I write it in current class and If I generate the classes from model again then class get overwrites and all validations get lost. and my structure is not stable yet. so its better to write it in partial class. – nilesh1foru Aug 4 '12 at 9:50
hey @nilesh1foru i see your accept rate is 0%, you can accept answers by clicking the tick next to the answer. Doing this will give credit to the people who put in the effort to answer your questions and help other people who are looking at this later. It will also make it more likely that people answer any new questions you have (such as this one) – Luke McGregor Aug 4 '12 at 10:01

3 Answers

up vote 6 down vote accepted

You can do attribute decoration in a partial class with an interface

If you have generated the following class (via whatever custom tool)

public partial class Location
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string Remark { get; set; }
    public string State { get; set; }
    public string Region { get; set; }
    public string PinCode { get; set; }
    public virtual ICollection<Comment> Comments { get; set; }
}

You can add annotations to properties in the generated class (without modifying the generated file) by creating a new interface and a new partial class as below

    public interface ILocation
    {
        [StringLength(50, ErrorMessage = "Region can accept maximum 50 characters.")]
        string Region { get; set; }
    }

    public partial class Location :ILocation
    {
    }
share|improve this answer
Thanks, but where can I write this code ? In which class ? In partial class (new one ) ? I am not supposed to add anything in generated class , because it will generated many times until my structure doesn't get fixed. – nilesh1foru Aug 4 '12 at 10:11
@nilesh1foru ive updated my answer to apply to your specific case – Luke McGregor Aug 4 '12 at 10:15
Thanks again, but can I write the above code as it is in new class ? (New partial class , new code file ?) – nilesh1foru Aug 4 '12 at 10:23
If you have the first partial class you can add an attribute to an existing property by creating the second two classes inside the same DLL – Luke McGregor Aug 4 '12 at 10:27
I think you are not getting what I want... 1. I am using MVC application. 2. I have created model and generated the class by right clicking on 'Generate Class' menu. 3. when I did this different classes are made as per entities in model. 4. now I have a simple question, can I add new file(Class file) which contains the partial class of any of the class generated by MVC app.(ex. Location class) and where I can put the DataAnnotations? – nilesh1foru Aug 4 '12 at 10:39
show 11 more comments

If all you need is validation, you can use so-called metadata types.

Detailed tutorial is here.

share|improve this answer

I have written two classes now 1. Auto generated class is below.

namespace Cntities

{

public partial class Location


{


    public int Id { get; set; }


    public string Name { get; set; }

    public string Remark { get; set; }


    public string State { get; set; }


    public string Region { get; set; }


    public string PinCode { get; set; }


    public virtual ICollection<Comment> Comments { get; set; }
}


}

As per your direction I have written code in new class .

   namespace Cntities
{

    public interface ILocation
    {

        [StringLength(50, ErrorMessage = "Region can accept maximum 50 characters.")]
        string Region { get; set; }

        [Required]
        string Name { get; set; }

        string Remark { get; set; }

        [StringLength(50, ErrorMessage = "State can accept maximum 50 characters.")]
        string State { get; set; }

    }

    public partial class Location : ILocation
    {
    }

}

Now its giving the error below.

Ctities.Location' does not implement interface member 'Ctities.ILocation.Remark

share|improve this answer
This compiles just fine on my machine – Luke McGregor Aug 5 '12 at 4:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.