0

以下 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. 这是最好的方法吗?

谢谢,杰森

4

1 回答 1

0

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

于 2009-11-01T15:01:24.637 回答