I'm trying to learn ASP.NET MVC 4, so I'm trying to make a blog to help me learn. I can't seem to set the datetime when it was posted, it just uses the current time.
This is the code I have for my blog model
public class BlogPost
{
public int ID { get; set; }
public string Title { get; set; }
[DataType(DataType.MultilineText)]
public string Content { get; set; }
public DateTime DateTimePosted { get; set; }
public string Author { get; set; }
public List<Comment> Comments { get; set; }
public BlogPost()
{ }
public BlogPost(int id, string title, string content, string author)
{
this.ID = id;
this.Title = title;
this.Content = content;
this.DateTimePosted = DateTime.Now;
this.Author = author;
}
}
public class BlogPostDBContext : DbContext
{
public BlogPostDBContext()
: base("DefaultConnection")
{ }
public DbSet<BlogPost> BlogPosts { get; set; }
}
How can I change this to store the datetime when it was posted?
DateTimePosted = DateTime.Now;, so when you are retrieving the records you need to set that value explicitly instead ofDateTime.Now, code for that relevant part might be useful – V4Vendetta Nov 27 '12 at 6:37DateTimePosted = DateTime.Now;I suggest removing this line of code and setting theDateTimePostedvalue explicitly. – Mez Nov 27 '12 at 6:46