一个WCFService提供服务,其中定义一个User类(model),另一个Asp.net MVC引用该WCFService。
MVC Control:
public ActionResult Index(){
ServiceReference.ServiceClient service = new ServiceReference.ServiceClient();
SerivceReference.User user = service.Login("LoginID","LoginPW");
return View(user);
}
MVC View:
@model ????
问:View 中【???】处应该如何写才能引用Wcf中定义的类?如何无法实现,原因是什么?
打开Service References文件夹,打开相应的WCF文件夹,打开Reference.cs文件
命名空间.类名