Blog that contains articles about new technologies related or not with programming.
I will describe and solves some problems that I encounter in my career.
ASP .NET, AJAX, Javascript, C++, C# and SQL are some of the subjects that will appear.
05 August 2016
Linq query on datatable
var results =from myRow in myDataTable.AsEnumerable() where myRow.Field<int>("RowNo")==1 select myRow;
No comments:
Post a Comment