Ho due classi:C# - LINQ dinamica da una condizione lista
public class Customer
{
public string FirstName { get; set; }
public string LastName { get; set; }
public List<Product> Product { get; set; }
}
public class Product
{
public string ProductNumber { get; set; }
public string ProductColor { get; set; }
}
E un esempio:
Customer[] c = new Customer[]
{
new Customer()
{
FirstName = "FirstName1",
LastName = "LastName1",
Product = new List<Product>
{
new Product()
{
ProductColor = "ProductColor1",
ProductNumber = "11"
}
}
},
new Customer()
{
FirstName = "FirstName2",
LastName = "LastName2",
Product = new List<Product>
{
new Product()
{
ProductColor = "ProductColor2",
ProductNumber = "12"
}
}
}
};
Io uso System.Dynamic.Linq
biblioteca per filtrare la mia matrice:
var filter = c.Where("FirstName == \"FirstName1\"").Select(x => x).ToList();
Creo una classe condition
e un'istanza:
public class condition
{
public string propertyName { get; set; }
public string propertyValue { get; set; }
}
List<condition> f = new List<condition>
{
new condition()
{
propertyName = "FirstName",
propertyValue = "FirstName1"
},
new condition()
{
propertyName = "Product.ProductColor",
propertyValue = "11"
}
};
voglio creare clausola multipla Where
da questo List<Condition>
Come fare questo?
Puoi mostrare il codice in cui attualmente si applica una condizione all'elenco? Dovrebbe essere semplice come 'var toFilter = sourceCollection.AsEnumerable(); foreach (condizione var in condizioni) {toFilter = toFilter.Where (condizione); } '. – CodeCaster
Il tipo di stringa di tutte le marche è di tutti i tipi? –
No, tutte le proprietà non sono stringhe di tipo –