Silverlight客户端 - 简单的RIA select where子句

时间:2009-11-01 14:11:03

标签: .net silverlight ria

以下RIA代码适用于我的silverlight客户端。但我不想要表“tbLeagues”中的所有数据 - 所以我该如何过滤它?

            JasonsDomainContext context = new JasonsDomainContext();
        dgLeagues.ItemsSource = context.tbLeagues;
        context.Load(context.GetTbLeagueQuery());

在那里阅读许多文章,规范似乎这样做....(使用where子句)但是即使这个正常的选择也没有给我的数据网格记录。

JasonsDomainContext context = new JasonsDomainContext();
        dgLeagues.ItemsSource = from l in context.tbLeagues
                                select l.dbLeagueName;

        context.Load(context.GetTbLeagueQuery());
  1. 我做错了什么?
  2. 这是最好的方法吗?
  3. 感谢, 杰森

1 个答案:

答案 0 :(得分:0)

您是否尝试在JasonsDomainServices GetTbLeague方法中添加where子句?