MVVM中的异步是什么? Model或ViewModel。最佳做法?

时间:2013-02-19 09:13:14

标签: c# .net wpf mvvm mvvm-light

我正在寻找在层之间进行异步通信的最佳实践。 我正在使用mvvm light toolkit

目前我在模型中使用了背景工作者,因为我在自动生成的代码中看到了这一点。不是背景工作者而是异步电话。

public void GetConfig(Action<Config, Exception> callback)
{
    BackgroundWorker backgroundWorker = new BackgroundWorker();
    backgroundWorker.DoWork += (backgroundWorkerSender, backgroundWorkerArgs) =>
    {
        try
        {
            backgroundWorkerArgs.Result = AppEnvironment.Instance.Config;
        }
        catch (Exception exception)
        {
            backgroundWorkerArgs.Result = null;
        }
    };

    backgroundWorker.RunWorkerCompleted += (backgroundWorkerSender, backgroundWorkerArgs) =>
    {
        if (backgroundWorkerArgs.Result != null)
        {
            callback((Config) backgroundWorkerArgs.Result, null);
        }
        else
        {
            /* ToDo: exceptionhandling */
        }
    };

    backgroundWorker.RunWorkerAsync(); 
}

现在我发现AsyncDelegateCommand实现了ViewModel中的异步部分。

private ICommand _refreshObjectDefinitionCommand;
public ICommand RefreshObjectDefinitionCommand
{
    get
    {
        return _refreshObjectDefinitionCommand
          ?? (_refreshObjectDefinitionCommand = new AsyncDelegateCommand(delegate
              {
                  IsBusy = true;
                  _dataService.GetObjectDefinition(
                    (xmlObjectDef, errorConfig) =>
                    {
                        if (errorConfig != null)
                        {
                            /* ToDo Lenz: exceptionhandling */
                            return;
                        }

                        ObjectDefinition = xmlObjectDef;
                    });

                  _dataService.GetObjectDefinitionTreeView(
                      (treenodes, errorConfig) =>
                      {
                          if (errorConfig != null)
                          {
                              /* ToDo Lenz: exceptionhandling */
                              return;
                          }

                          TreeNodes = treenodes;
                      });
              },
                                () => _isConnected, o => IsBusy = false, exception => IsBusy = false));
    }
}

我对最佳做法有点困惑?我读了很多文章。但不知何故,他们总是不同的意见。在维护正常工作的情况下是否有任何最佳兼容性规定?

一些值得思考的东西

型号:

http://csharperimage.jeremylikness.com/2009/12/simplifying-asynchronous-calls-in.html

http://www.dzone.com/articles/mvvmlight-and-async

视图模型

http://www.codeproject.com/Articles/123183/Asynchronus-MVVM-Stop-the-Dreaded-Dead-GUI-Problem

http://www.codeproject.com/Articles/441752/Async-MVVM-Modern-UI

2 个答案:

答案 0 :(得分:1)

好吧,我会说模型的fecthing并将其转换为View Model是异步的。谁来做,取决于体系结构,它可以在视图模型本身上完成,或者它可以使用控制器层进行同步加载和初始化VM到视图的映射。背景工作者也是过去你应该使用Task类进行并行操作。当然,在通知VM的更改视图时,不要忘记通过调度程序调用。

代码示例:

    Task<string>.Factory.StartNew(() =>
{
     string text = GetArticleText();
     Application.Current.Dispatcher.BeginInvoke(new Action(()=>MyTextProperty = text));   
});

答案 1 :(得分:1)

我建议将异步代码放在ViewModel中,让模型存储数据。当我开始使用MVVM时,我学到的第一件事就是从我的模型中删除逻辑,然后将其保存在我的ViewModel中。虽然我会说你把代码放在哪里并不重要,只要所有阅读代码的人都能理解它。