This website is continuously under development, with new features and updates added regularly.
Task Detail
Created Post table.
Added text type column since the content will be long Markdown context
modelBuilder.Entity<Post>()
.Property(b => b.Content)
.HasColumnType("text");
11/04/2024 20:06:28
Created Post model, PostController, and Views/Post/index.cshtml