Click here to Skip to main content
16,018,818 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,

I have datatable, in that have one datetime column (CreateOn). These values like 2012-10-13 13:30:11.563. Now I want write a filter expression for getting values on CreatedOn column with out milliseconds with help of DataTable.Select() method. Is it possible.
Posted

1 solution

yes its possible, Do like this

C#
DataRow[] dr = dt.Select("CreateOn LIKE '2012-10-13*'");
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900