问题描述
我在用C#将datetime转换为日期格式时感到麻烦.
在这里,我以编程方式创建了一个数据表,并且还添加了列.但是我想要一列作为日期列.但是在C#中,我们只有日期时间方法.
这是我创建的数据表,..
DataTable dt = new DataTable();
dt.Clear();
dt.Columns.Add("DDBookID",typeof(System.Int32));
dt.Columns.Add("DDDate",typeof(System.DateTime));
dt.Columns.Add("Amount",typeof(System.Decimal));
dt.Columns.Add("CRTE_TS",typeof(System.DateTime));
对于DDDate列,我只需要Date数据类型.任何人都可以帮忙解决这个问题...
在此先感谢.......
Hi,
I am troubling in a converting datetime to date format in C#.
Here i had created a datatable programatically and added columns also. But i want one column as a date column. But in C# we are having only datetime Method.
This is the Data table i had created,..
DataTable dt = new DataTable();
dt.Clear();
dt.Columns.Add("DDBookID", typeof(System.Int32));
dt.Columns.Add("DDDate", typeof(System.DateTime));
dt.Columns.Add("Amount", typeof(System.Decimal));
dt.Columns.Add("CRTE_TS", typeof(System.DateTime));
For DDDate column i want only Date Datatype..
Can any one help on this issue...
thanks in advance.......
推荐答案
这篇关于将数据表中的Datetime列转换为Date数据类型列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!