8.0: NoteDetail Model
Create the NoteDetail
Model
NoteDetail
ModelIn this section, we write the NoteDetail
model. This will let us view all the properties of the note.
In the Solution Explorer, right click on ElevenNote.Models
Select Add -> Class and name it
NoteDetail.cs
Make the class public
Add the following properties:
Add data annotations:
CTRL .
to bring in the using statement for the annotations
Details()
Method
Details()
MethodOpen
NoteController.cs
Create a
Details()
method under theCreate(NoteCreate model)
but above theprivate NoteService CreateNoteService()
:Ignore the error for now.
GetNoteById()
Method
GetNoteById()
MethodOpen
NoteService.cs
Add a
GetNoteById()
method under theGetNotes()
method:Add a using statement to connect to the database
ApplicationDbContext()
:
Next, we'll create the view for the note detail page.
Last updated