↧
Re: DataTable.Select() implementation
urpalshu How do we get the Row[0] Value from groupedData?If you want to retrieve the first record value then you use the below code string value1 =...
View ArticleRe: DataTable.Select() implementation
thank you very much for getting back.Below script works. There might be better ways of achieving this.How do we get the Row[0] Value from groupedData? The datatable fields can no longer be referenced...
View ArticleRe: DataTable.Select() implementation
urpalshu Is there a way to get only the two rows that match for me in this case, I need to only get back these two rows that I require,You can use Linq to get the result as per your requirement. You...
View ArticleDataTable.Select() implementation
Hello:List<MappingValue> mapList = new List<Map>(){ new MappingValue { MappingValueId = 74, Name = "Account", Value = "426", SourceName ="Revenue ", SourceValue= "TSG"}, new MappingValue {...
View Article