how to get data in checklist from database in ASP.Net MVC3

MalcolmHB

New Member
I have one Document model and one documentType model \[code\]public class DocumentType{[Key][ScaffoldColumn(false)]public int DocumentTypeID { get; set; }public string DocumentTypeName { get; set; }}public class Document{[Key]public int DocumentId { get; set; }public int DocumentTypeId { get; set; }public string DocumentPath { get; set; }public string DocumentName { get; set; }public string selected { get; set; }public DocumentType DocumentType { get; set; }}\[/code\]now i have to display the list of Document of one documentType with checklist in process controller and checked values should be stored in Document table. Plz help me out.. Thanks in Advance ..
 
Top