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 new to ASP.net MVC. I am trying to create a viewmodel to display a join of data. Here is some example code:

   public class Person
{
    [Key]
    public int ID { get; set; }
    public string Name { get; set; }

    public ICollection<Relative> Relatives { get; set; }

}

public class Relative
{
    [Key]
    public int ID {get; set; }
    public Person Person { get; set; }
    public RelationType RelationType { get; set; }
}

public class RelationType
{
    [Key]
    public int ID { get; set; }
    public string Description { get; set; }
}

public class PersonViewModel
{
    public string Name { get; set; }
    public ICollection<string> RelativeNames { get; set; }
    public ICollection<string> RelativeTypes { get; set; }
}

public class PersonContext : DbContext
{
    public DbSet<PersonViewModel> people { get; set; }
}

When I try to create my controller through Visual Studio, I get the following error:

Unable to retrieve metadata for PersonViewModel. One or more validations errors were detected during generation: EntityType 'PersonViewModel' has no key defined. Define the key for this EntityType.

share|improve this question

2 Answers

up vote 0 down vote accepted

The error is self explanatory. You need to add an Id field to the PersonViewModel which will have to be decorated with [Key] as you have rightly done in the classes above.

share|improve this answer
ah. I was just confused. I never specified a view with a primary key before; I was thinking in terms of SQL Server views. – Lehel Kovach Aug 13 '12 at 0:42

View Models are convenient classes for passing data between the controller and the view. The reason you are getting this exception is that because you are passing PersonViewModel class into your dbSet. You cannot do this unless PersonViewModel class has a corresponding table. In that case PersonViewModel should not be a view model but should be a entity,a model class to represent your table.

By Looking at your code I am guessing that you have tables for Person and Relative in your database hence you shoud do the following

public class PersonContext : DbContext
{
    public DbSet<Person> Person { get; set; }
    public DbSet<Relative> Relative { get; set; }

}

and populate PersonViewModel through Person and Relative properties of your DbContext classes. This could be done inside the controller or in a repository class if you have one.

share|improve this answer
I was attempting to use Code First to generate the tables. Is it possible with the layout I have or no? – Lehel Kovach Aug 13 '12 at 0:14
Yes you have the correct code for that. Please look at the example here msdn.microsoft.com/en-us/data/gg685467.aspx – Haroon Emmanuel Aug 13 '12 at 0:16

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.