namespace MvcApplication1.Models { public class Team { [Key] public int TeamId { get; set; } [Required] public string Name { get; set; } public string City { get; set; } public DateTime Founded { get; set; } }
.... Then tried to create a TeamController !!
2012-08-23 14:02
This blog is frozen. No new comments or edits allowed.
Anyone have Fix for this?
namespace MvcApplication1.Models
{
public class Team
{
[Key]
public int TeamId { get; set; }
[Required]
public string Name { get; set; }
public string City { get; set; }
public DateTime Founded { get; set; }
}
.... Then tried to create a TeamController !!