0

我是 windows phone 7 编程的新手,但我真的很累,因为我花了 3 天时间解决一个问题。我搜索了所有互联网并得到了一些很好的解释,但没有运气 - 它不适用于我的程序。

我在 SQL Azure 中创建了一个名为dbo.Messenger的表,其结构如下:

  • id(PK,不为空)
  • 类别(nvarchar(30),空)
  • 消息(nvarchar(最大),空)
  • 描述(nvarchar(200),空)

然后我为它做 WCF wchich 应该给我一个它的列表:

      [OperationContract]
        List<NoteDto> GetNotes();
    public List<NoteDto> GetNotes()
    {
        using (var context = new WP7mgrEntities())
        {
            var notes = (from eachNote in context.Messenger
                         orderby eachNote.id ascending
                         select new NoteDto
           {
               id = eachNote.id,
               category= eachNote.category,
               description= eachNote.description,
               message= eachNote.message,
           }
                ).ToList();
            return notes;
        }
    }

当然在额外的类 NoteDto 上为每个 DataMember 获得了这样的:

  [DataMember] 
    public int id {get; set; }

因此,在此之后,我制作了 wp7 应用程序,这些应用程序获得列表框,也应该在我单击 button2 后填充

        <ListBox Height="431" HorizontalAlignment="Left" Margin="12,199,0,0" Name="listBox1" VerticalAlignment="Top" Width="438"
                 ItemsSource="{Binding Notes}">
         <ListBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel>
                        <TextBlock Text="{Binding category}"/>
                    </StackPanel>
                </DataTemplate>
            </ListBox.ItemTemplate>         
        </ListBox> 

而这背后的代码:

    private void button2_Click(object sender, RoutedEventArgs e)
    {
        Service1Client client = new Service1Client();
        client.GetNotesCompleted += new EventHandler<GetNotesCompletedEventArgs>(client_GetNotesCompleted);
        this.Notes = new ObservableCollection<NoteDto>();

    }
    private ObservableCollection<NoteDto> _notes;
    public ObservableCollection<NoteDto> Notes
    {
        get { return _notes; }
        set { _notes = value;
        this.RaisePropertyChanged("Notes");
        } 
    }

公共事件 PropertyChangedEventHandler PropertyChanged;私有无效 RaisePropertyChanged(string propertyName) { PropertyChangedEventHandler propertyChanged = this.PropertyChanged; if ((propertyChanged != null)) { propertyChanged(this, new PropertyChangedEventArgs(propertyName)); } }

    void client_GetNotesCompleted(object sender, GetNotesCompletedEventArgs e)
    {this.Notes = e.Result; }

当我单击按钮 2 时,我的列表框没有被数据库中的记录填充。
任何想法 ?请帮忙?

4

1 回答 1

0

你使用什么样的绑定?回想一下,只有 wshttpbinding 不适用于 WP7。另一方面,为什么不使用 WCF 数据服务将此类数据库公开为OData

一探究竟。

希望有帮助,

于 2012-04-05T20:37:57.747 回答