Wednesday, April 24, 2013

Azure tutorial on web site and database omission of Key field

http://www.windowsazure.com/en-us/develop/net/tutorials/web-site-with-sql-database/

If you dont have a key defined in the model you cant generate the HomeController as described.
This gets past it:

  public class Contacts
    {
        [Key]
        public int ContactId { get; set; }

No comments: