Skip to content

Instantly share code, notes, and snippets.

@MayogaX
Created January 11, 2013 14:30
Show Gist options
  • Select an option

  • Save MayogaX/4511051 to your computer and use it in GitHub Desktop.

Select an option

Save MayogaX/4511051 to your computer and use it in GitHub Desktop.
public class Manga
{
public int Id { get; set; }
public string Title { get; set; }
[Column(TypeName = "smallDateTime")]
public String Date { get; set; }
}
public class Manga
{
public int Id { get; set; }
public string Title { get; set; }
[Column(TypeName = "smallDateTime")]
public DateTime Date { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment