I am trying to get distinct rows based on multiple columns (attribute1_name, attribute2_name) and get datarows from datatable using Linq-to-Dataset.
I want results like this
attribute1_name attribute2_name
-------------- ---------------
Age State
Age weekend_percent
Age statebreaklaw
Age Annual Sales
Age Assortment
How to do thin Linq-to-dataset?

If it’s not a typed dataset, then you probably want to do something like this, using the Linq-to-DataSet extension methods:
Make sure you have a
using System.Data;statement at the beginning of your code in order to enable the Linq-to-Dataset extension methods.Hope this helps!