sto cercando di interrogare Posts
sulla base di un elenco di Tags
:LINQ molti-a-molti all'incrocio
public class Post
{
public int? Id {get;set;}
public string Name {get;set;}
public virtual ICollection<Tag> Tags {get;set;}
}
public class Tag
{
public int? Id {get;set;}
public string Name {get;set;}
public vritual ICollection<Post> Posts {get;set;}
}
Ora voglio tornare messaggi un elenco delle modifiche basate: IList<Tag> searchTags = ParseTagsFromSearchString("tag1,tag2,tag3"); // this function checks the tags in the database, so all the primary keys are available in the list
Quando un post contiene uno o più tag che esiste anche in searchTags
che dovrebbe essere incluso nel risultato. Ho provato la seguente:
var q = from s in Context.Registrations
where s.Tags.Intersect(tagList)
select s;
Errore: Cannot implicitly convert type 'System.Collections.Generic.IEnumerable<Models.Tag>' to 'bool'
var q = from s in Context.Registrations
where s.Tags.Any(t => tagList.Any(t2 => t.Id.Value == t2.Id.Value))
select s;
Runtime error: NotSupportedException: Unable to create a constant value of type 'Models.Tag'. Only primitive types ('such as Int32, String, and Guid') are supported in this context.
Tutte le idee?
- aggiornamento 4 gennaio: Le risposte indicano la soluzione giusta, ma nel mio codice ho ancora NotSupportedException. È possibile che il numero nullable causi questo dato che non è un tipo primitivo?
Ho provato la seconda soluzione nel codice LinqPad del post di Mark Lindel e funziona.Purtroppo nel mio codice ho ricevuto la stessa UnsupportedException .. – Marthijn