0

我的 RIA DomainService 中有两个查询。一种是使用 linq 的简单获取,另一种是使用 peramiter 和 linq 连接的获取。使用 include() 时的简单获取将我想要的数据返回到我的 silverlight 数据网格。加入的那个没有,为什么?

这是我的两种方法。最上面的那个是有效的。

    public IQueryable<UserProfile> GetUserProfiles()
    {
        // GetUserProfiles order by sum of carma
        return from up in ObjectContext.UserProfiles.Include("PriceRange")
               where up.Active
               orderby up.SumKarma descending 
               select up;
    }

    public IQueryable<UserProfile> GetUserProfilesByCountyID(int searchCountyID)
    {
        return from up in ObjectContext.UserProfiles.Include("PriceRange")
               join upsc in ObjectContext.UserProfileSearchCounties on up.IDUserProfile equals upsc.IDUserProfile
               where up.Active && upsc.IDSearchCounty == searchCountyID
               orderby up.SumKarma descending
               select up;

    }

更新:在 Cubicle.Jockey 的评论下,我能够解决这个问题。下面是我最终使用的。

    public IEnumerable<UserProfileSearchCounty> GetUserProfilesByCountyID(int searchCountyID)
    {
        return (from upsc in ObjectContext.UserProfileSearchCounties.Include("UserProfile").Include("UserProfile.PriceRange")
                where upsc.UserProfile.Active && upsc.IDSearchCounty == searchCountyID
                orderby upsc.UserProfile.SumKarma descending
                select upsc).ToList();
    }  
4

1 回答 1

0

所有数据都没有被返回,因为您正在执行一个选择,它只是 UserProfile 而不是您正在执行的连接查询。

于 2011-03-29T05:29:59.157 回答