c#

c#

Dynamic Linq with C#

Question: Inside the new in linq. i need to create dynamic properties based on a data table how can i do this? var query = (from indicador in tableIndicado.AsEnumerable() group indicador by indicador.Field<string>(“IND_CODUSU”) into g select new { #region Privot Table mensal // Janeiro Jan_Valor = g.Where(x => x.Field<DateTime>(“MTA_DTINIANO”).Month == …

Dynamic Linq with C# Read More »

Scroll to Top