我正在尝试创建一个调用Ria WebServices的Silverlight应用程序,问题是我不希望将Ria服务连接到我的ViewModel中。(/ p>
我的想法是让Creata成为一个界面包装器。例如,如果我想使用Ria身份验证服务,我只需创建自己的
public interface IMyAuthenticationService
{
void Login();
void LoginCallBack(LoginResult result);
event MyHandler LoginComplete()
}
然后,我可以在我的viewmodel中使用上述接口的实现,用于任何身份验证服务。这有望减少与Ria服务的耦合,因为上面的接口是通用的。
我想知道您是否可以就上述想法向我提供任何反馈。我不确定这是否是处理这种情况的好方法。
答案 0 :(得分:0)
我建议您构建一个紧密耦合的模型层,以便与您的RIA服务一起使用。如果Model层能够完成RIA所需的所有工作,(它应该是可独立测试的)然后你可以使用你建议的界面开始通过View Model翻译这些操作;您可以在单独的Silverlight库中构建Models层。
我使用TDD成功完成了企业解决方案。如果需要,我可以提供更具体的代码示例,但即使是简单的服务调用也会有很多类。我可以添加一些代码示例。
示例,从Bottom(服务)到Top(View):
我们从非常复杂的MultiplyService开始:
namespace StackOverflow.Tutorial.Web
{
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ServiceModel.DomainServices.Hosting;
using System.ServiceModel.DomainServices.Server;
[EnableClientAccess()]
public class MultiplyService : DomainService
{
[Invoke]
public MultiplyDTO Multiply(MultiplyDTO input)
{
input.Answer = input.A * input.B;
return input;
}
public class MultiplyDTO
{
public int Answer { get; set; }
public int A { get; set; }
public int B { get; set; }
}
}
}
通过MultiplyContext
课程向我们的Silverlight客户端公开了一些RIA魔术。因此,我们在模型的Silverlight一侧使用这个类:
using System;
using StackOverflow.Tutorial.Web;
using System.ServiceModel.DomainServices.Client;
namespace StackOverflow.Tutorial.Models
{
// This class is tightly coupled to
public class MultiplyServiceAgent : IMultiplyServiceAgent
{
public void Multiply(int a, int b, Action<int> callback)
{
MultiplyContext context = new MultiplyContext();
MultiplyDTO question = new MultiplyDTO() { A = a, B = b };
context.Multiply(question, (answer) =>
{
callback(answer.Value.Answer);
}, null);
}
}
}
我还包括一个界面IMultiplyServiceAgent
:
using System;
using System.ServiceModel.DomainServices.Client;
using StackOverflow.Tutorial.Web;
namespace StackOverflow.Tutorial.Models
{
public interface IMultiplyServiceAgent
{
void Multiply(int a, int b, Action<int> callback);
}
}
如果需要,可以将服务代理和接口编译成单独的类库,然后由您的silverlight应用程序的视图模型和视图使用,如下所示。首先是ViewModel:
using System;
using System.Net;
using System.Windows;
using StackOverflow.Tutorial.Models;
namespace StackOverflow.Tutorial.ViewModels
{
public class MultiplyViewModel : DependencyObject
{
IMultiplyServiceAgent agent = new MultiplyServiceAgent();
public int A
{
get { return (int)GetValue(AProperty); }
set { SetValue(AProperty, value); }
}
// Using a DependencyProperty as the backing store for A. This enables animation, styling, binding, etc...
public static readonly DependencyProperty AProperty =
DependencyProperty.Register("A", typeof(int), typeof(MultiplyViewModel), new PropertyMetadata(0));
public int B
{
get { return (int)GetValue(BProperty); }
set { SetValue(BProperty, value); }
}
// Using a DependencyProperty as the backing store for B. This enables animation, styling, binding, etc...
public static readonly DependencyProperty BProperty =
DependencyProperty.Register("B", typeof(int), typeof(MultiplyViewModel), new PropertyMetadata(0));
public int Answer
{
get { return (int)GetValue(AnswerProperty); }
set { SetValue(AnswerProperty, value); }
}
// Using a DependencyProperty as the backing store for Answer. This enables animation, styling, binding, etc...
public static readonly DependencyProperty AnswerProperty =
DependencyProperty.Register("Answer", typeof(int), typeof(MultiplyViewModel), new PropertyMetadata(0));
public void Calculate()
{
agent.Multiply(this.A, this.B, (answer) =>
{
this.Answer = answer;
});
}
}
}
最后,观点:
<UserControl x:Class="StackOverflow.Tutorial.Views.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<StackPanel x:Name="LayoutRoot" Background="White">
<TextBox Name="txtA" Text="{Binding A, Mode=TwoWay}" />
<TextBox Name="txtB" Text="{Binding B, Mode=TwoWay}" />
<Button Name="btnCalculate" Content="Calculate" Click="btnCalculate_Click" />
<TextBlock Name="txtAnswer" Text="{Binding Answer}" />
</StackPanel>
</UserControl>
View背后有一个简单的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using StackOverflow.Tutorial.ViewModels;
namespace StackOverflow.Tutorial.Views
{
public partial class MainPage : UserControl
{
public MultiplyViewModel ViewModel { get; set; }
public MainPage()
{
InitializeComponent();
this.ViewModel = new MultiplyViewModel();
this.DataContext = this.ViewModel;
}
private void btnCalculate_Click(object sender, RoutedEventArgs e)
{
this.ViewModel.Calculate();
}
}
}
因此,我们在上面的示例中看到,Web服务和Silverlight应用程序的模型是紧密耦合和集成的。模型 - 使用ServiceAgent和IService接口可以在自己的Silverlight类库中构建,并与企业解决方案中的各种Silverlight应用程序共享。由于RIA确实要求提供商和消费者紧密耦合,限制这种依赖性将防止将来出现问题,正如您在问题中指出的那样。
现在提供商和消费者已经准备就绪,主要的Silverlight应用程序将模型通过ViewModel连接到View。 (ViewModels和Views通常也是紧密耦合的)。