I have a DateTime field in my SQL Server DB, and I would like to display just the date in short date form on a label in a WinForm (C#). I still get 06/01/2013 12:00:00, thou
You can use Data annotation in model (or in ViewModel) class like follows:
[DataType(DataType.Date)] public DateTime DateOfExpiration { get; set; }