1. 설치하기 microsoft SQL Server Management Studio와 Express를 설치해야합니다. 아래에서 express를 설치해야합니다. 2. 모델만들기 모델을 테이블을 만든다고 생가하면됩니다. 그래서 모델의 이름과 테이블의 이름을 동일해야합니다. public class ApplicationUser { //ApplicationUser테이블의 필드명을 정해주었다. [Key] [Required(ErrorMessage="required")] public int UserId { get; set; } [Display(Name ="이름을 입력해주세요")] public string UserName { get; set; } [Display(Name = "연락처 입력해주세요")] public str..