Puis-je déclarer / utiliser une variable dans LINQ ?
Par exemple, puis-je écrire après LINQ plus clair?
var q = from PropertyDescriptor t in TypeDescriptor.GetProperties(instance)
where (t.ComponentType.GetProperty(t.Name) != null)
select t.ComponentType.GetProperty(t.Name);
Existe-t-il un moyen de ne pas écrire / appeler t.ComponentType.GetProperty(t.Name)
deux fois ici?