Why does C# still get the time from SQL if stored procedure only gets the date from a column:
CONVERT (DATE,RecordAdded, 103) as DateCaptured
Result:
I am selecting the date from a datetime column in SQL, then dumping it into a Listview. But I only want the date to display in the listview.
ListViewItem FeedbackTable = new ListViewItem(FeedbackReader["DateCaptured"].ToString());