System.Data.DataSetExtensions assembly

I am trying to add System.Data.DataSetExtensions in a UI Customization Custom Assembly Reference with no luck. My guess it is because it is a System Assembly and not a Epicor or User Assembly.

Wondering if there is a way. I want to be able to use IQueryable and/or IEnumerable in a LINQ query.

Scott

you could manually drop the dll in the client folder but that’s generally not recommended.

Yea, I don’t want to do that. I guess it is a foreach loop then.

Thanks

That’s all that LINQ does in the back end anyways

Yea, I was looking to convert a DataSet to a .AsQueryable so I did not have to loop through it. I like to use .Any if I am looking for a condition in multiple rows

You can do Select and use the SQL Syntax

DataSet.Table[0].Select(“MyField = 33”)

Nice, I did not think of that. Thanks