Questions tagged [system.linq.dynamic]

This is the Microsoft assembly for the .Net 4.0 Dynamic language functionality.

This is the Microsoft assembly for the .Net 4.0 Dynamic language functionality. Library can be found at https://www.nuget.org/packages/System.Linq.Dynamic.

19 questions
0
votes
1 answer

DynamicExpressionParser parse expression for enum property as integer

I want to create an expression for converting a property from an Enum to an Int. I want to use DynamicExpressionParser.ParseLambda to parse nested properties: public enum MyEnum { A, B }; public class OuterClass { public InnerClass Inner { get;…
0
votes
1 answer

Adding running sum in group by date in new row

I'm working Syncfusion DocIO with creating tables in .docx with some props and can't create row with group by date => on every new year I need new row with running sum. I already create sum row, but this row returns all sum for additional props…
0
votes
0 answers

Multiple Dynamic Column Select Expression Tree

Need: To allow the user to select 3 columns to return from a local database. With the help of another post I was able to return 1 column for a different application in the program, and I figured I could apply the same process here, but I'm not…
0
votes
1 answer

Entity Framework getting data from the ENTIRE column

I've got an api call getUser which returns ALL the info from the database at the specified column, but I want to exclude some things; phonenumber, email etc. Tried fiddling with the LINQ, changeing the modelBuilder, changeing the optionBuilder Have…
1
2