I am binding the dropdown values using LINQ as below

var varResult =
        (from OppData in dtOpp.AsEnumerable()
          select new
          {
           TEXT = OppData.Field<object>(sColName), //column value
           VALUE = sColName // column Name
           }
        ).Distinct();

Then the code is converted to datatable using LINQtoDataTable Function.

dtTemp = LINQToDataTable(varResult);

Then the dropdown is binded as seen below;

 ddlTemp.DataSource = dtTemp;
 ddlTemp.DataTextField = "TEXT";
 ddlTemp.DataValueField = "VALUE";
 ddlTemp.DataBind();

Now the value that dropdown binds for one of the column, (Employee Joining date) is in format of 08/09/2011~Y, because it is directly getting bind from database. I wish to apply substring on the date so that it is in format of 08/09/2011. How to apply substring on the LINQ queries?

link|improve this question

Thanks for the comment guys, but i wish to apply the change only for one column. This would throw an error for columns other than Employee Joining date – Smith Pascal Jr. Sep 19 '11 at 6:36
feedback

2 Answers

up vote 0 down vote accepted

Use your TEXT field in your anonymous type in LINQ query as string and format value during query:

var varResult =
    (from OppData in dtOpp.AsEnumerable()
      select new
      {
       TEXT = OppMilestonedate.Field<object>("EMP_JOIN_DATE") == null ? null : OppMilestonedate.Field<object>("EMP_JOIN_DATE").ToString().Substring(0, 10), 
       VALUE = sColName 
      } 
    ).Where(x => x.TEXT != null).Distinct(); 

Somethign like this. Also you can provide more meaningful format of date representation, ex: Aug 09, 2011, etc.

link|improve this answer
Any inputs on my comment? – Smith Pascal Jr. Sep 19 '11 at 6:53
Didn't get your last comment. As I know you have only one column in dropdown list and takes text from TEXT field and value from VALUE field. I miss something? About what columns are talking about? – Samich Sep 19 '11 at 6:56
We have multiple fields such as EmpName, EmpAge. The change should only be valid for Employee Joining date.How to check for that? – Smith Pascal Jr. Sep 19 '11 at 7:04
Got it. And you are using the same method for all fields. In this case or you need to add some Convertors class whitch will define if it's DateTime object then do the following conversion, otherwise you can put if statement for DateTime types and additionaly convert it in following way: varResult = varResult.Select(x => new { TEXT = Convert.ToDateTime(x.TEXT).ToShortDateString(), x.VALUE = VALUE }); – Samich Sep 19 '11 at 7:09
Aslo, if retriewed object are DateTime type then try to use DataTextFormatString property of the DropDownList control – Samich Sep 19 '11 at 7:17
show 9 more comments
feedback

This link will help to do string operation.... with linq queries...

http://msdn.microsoft.com/en-us/vbasic/bb737939#strsubst

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.