Wie schreibe ich eine dynamische Abfrage für Linq, wenn ich sagen, Kundenklasse, die die Felder enthält:
string name
string address
int phoneno
Ich muss auf der Grundlage von Informationen abfragen, die ähnlich lauten
query = string.Empty;
if(!string.IsNullorEmpty(name))
{
query += "@name = name";
}
if(!string.IsNullorEmpty(address))
{
query += "@address = address";
}
if(!string.IsNullorEmpty(phoneno))
{
query += "@phoneno = phoneno";
}
var result = from condition in customer
where(query)
select condition;
Bearbeiten #1:
die Elemente sind während der Laufzeit änderbar wie
private Customer[] GetCustomers(Dictionary<string,string> attributes)
{
here the attribute may be, name alone, or name and address, or name address and phoneno
foreach(string field in attributes.key)
{
query += field == attributes[key];
}
Customers[] =ExecuteQuery(query);
}
Wird diese Art der Abfrage von LINQ unterstützt?
Bearbeiten #2:
Hallo Mouk,
Da ich neu in C# bin, bin ich immer noch kämpfen, dies ist nicht für mich arbeiten.
var query = _ConfigFile.ConnectionMasterSection;
for(int i = 0; i < filter.count; i++)
{
query = result.Where(p => typeof(ConnectionMaster).GetProperty(filter[i].Attribute).Name == filter[i].Value);
}
Dies führt zu einer Leere, während ich folgendes verwendet habe
var query = _ConfigFile.ConnectionMasterSection;
//Hard coded
res.Where(q => q.category == filter[0].Value);
Und es hat so funktioniert, wie ich es erwartet hatte.
Hallo Bryan Watts,
Ich habe Ihren Code auch ausprobiert und bekomme diesen Fehler: "Lambda Parameter nicht im Geltungsbereich".
for(int i = 0; i < filter.count; i++)
{
Field item = filter[i];
MemberExpression param = Expression.MakeMemberAccess(Expression.Parameter(typeof(Connection), "p"), typeof(Connection).GetProperty(item.Attribute));
MemberExpression constant = Expression.MakeMemberAccess(Expression.Constant(item), typeof(Field).GetProperty("Value"));
}
try
{
var myquery = Queryable.Where(coll, Expression.Lambda<Func<Connection, bool>>(
Expression.Equal(param, constant), Expression.Parameter(typeof(Connection),"p")));
}
Worin liegt hier der Fehler?