Diré desde el principio que estoy haciendo cosas realmente aterradoras con linq en datos dinámicos. pero no puedo entender por qué esta consulta falla al compilar:Error de compilación dinámico + linq
de error 1 La propiedad '<> h__TransparentIdentifier0' no se puede usar con argumentos de tipo
public class Program { public static void Main(string[] args) { var docs = new dynamic[0]; var q = from doc in docs where doc["@metadata"]["Raven-Entity-Name"] == "Cases" where doc.AssociatedEntities != null from entity in doc.AssociatedEntities where entity.Tags != null // COMPILER ERROR HERE from tag in entity.Tags where tag.ReferencedAggregate != null select new {tag.ReferencedAggregate.Id, doc.__document_id}; } } public static class LinqOnDynamic { private static IEnumerable<dynamic> Select(this object self) { if (self == null) yield break; if (self is IEnumerable == false || self is string) throw new InvalidOperationException("Attempted to enumerate over " + self.GetType().Name); foreach (var item in ((IEnumerable) self)) { yield return item; } } public static IEnumerable<dynamic> SelectMany(this object source, Func<dynamic, int, IEnumerable<dynamic>> collectionSelector, Func<dynamic, dynamic, dynamic> resultSelector) { return Enumerable.SelectMany(Select(source), collectionSelector, resultSelector); } public static IEnumerable<dynamic> SelectMany(this object source, Func<dynamic, IEnumerable<dynamic>> collectionSelector, Func<dynamic, dynamic, dynamic> resultSelector) { return Enumerable.SelectMany(Select(source), collectionSelector, resultSelector); } public static IEnumerable<dynamic> SelectMany(this object source, Func<object, IEnumerable<dynamic>> selector) { return Select(source).SelectMany<object, object>(selector); } public static IEnumerable<dynamic> SelectMany(this object source, Func<object, int, IEnumerable<dynamic>> selector) { return Select(source).SelectMany<object, object>(selector); } }
Para colmo de males, las siguientes obras :
var docs = new dynamic[0]; var q = from doc in docs where doc["@metadata"]["Raven-Entity-Name"] == "Cases" where doc.AssociatedEntities != null from entity in doc.AssociatedEntities where entity.Tags != null from tag in entity.Tags select new { tag.ReferencedAggregate.Id, doc.__document_id };
es sólo cuando agrego:
donde tag.ReferencedAggregate = null
Eso me da un error de dos líneas antes:
donde entity.Tags = null // ERROR COMPILER AQUÍ
No está seguro de lo que está pasando
Gracias, eso fue todo. Terminé resolviendo esto usando: desde la etiqueta en entity.Tags.Where ((Func) (t => t.ReferencedAggregate! = Null)) Feo como el infierno. Traté de escribir el método de extensión allí, pero no pude entender cómo hacer que CSC lo acepte. –