Does Entity Framework 4 have a Contains feature?
        Posted  
        
            by Luke101
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Luke101
        
        
        
        Published on 2010-05-17T00:05:05Z
        Indexed on 
            2010/05/17
            0:10 UTC
        
        
        Read the original article
        Hit count: 191
        
entity-framework
|c#
Right now I am using an extension to linq to provide me with the functionality of Contains. I call the WhereIn like this:
Answers = Answers.WhereIn(x => x.category.catid, catSTRarray);
Is there a built in function within entity framework to use?
© Stack Overflow or respective owner