ASP.NET Core SelectList에 빈 값 넣기 코드 조각
ASP.NET Core SelectList에 빈 값 넣는 코드 조각을 보여줍니다.
var properties = _context.Properties.ToList();
properties.Insert(0, new Property { Id = 0, Name = "" });
ViewData["PropertyId"] = new SelectList(properties, "Id", "Name");
Comments
Comments are closed