How to apply LINQ to ObjectResult<int?> when using EF 4.0?
        Posted  
        
            by KentZhou
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by KentZhou
        
        
        
        Published on 2010-06-16T17:11:04Z
        Indexed on 
            2010/06/16
            17:22 UTC
        
        
        Read the original article
        Hit count: 816
        
LINQ
|entity-framework
Suppose I have a function call from EF like:
var result = context.myFunction();
the reuslt type is  ObjectResut<int?>. Then I want to use linq to get the single value. 
How to write the linq?
© Stack Overflow or respective owner