Click here to Skip to main content
15,903,385 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have one Document model and one documentType model
C#
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; }
}

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 ..
Posted
Updated 9-Apr-13 7:55am
v2
Comments
Jameel VM 9-Apr-13 9:18am    
did you tried anything?
Member 9961812 10-Apr-13 2:32am    
I tried but didnt fetech me the results.. if some one knows plz help me..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900