我正在研究MVC 4和WCF类库我添加了返回List的方法,并且我添加了WCF服务的引用。 现在我正在创建ServiceReference1的代理,然后我无法获得此ServiceReference1对象。 如果我将返回类型更改为字符串然后它正在工作..
我曾尝试更改所有集合类型,但我得到了ServiceReference1对象。!
我错了或解决方案是什么。?
我的WCF代码在这里
public class BuildTrackerService : IBuildTrackerService
{
public List<Property> DoWork()
{
DataTable dt = new DataTable();
List<Property> objProperty = new List<Property>();
SqlConnection conn = DbConnection.GetConnection();
SqlDataAdapter adpt = new SqlDataAdapter("[GetPropertyDetail]", conn);
adpt.SelectCommand.CommandType = CommandType.StoredProcedure;
try
{
conn.Open();
adpt.Fill(dt);
}
catch (Exception) { throw; }
finally
{
conn.Close();
adpt.Dispose();
}
objProperty = DataTableHelper.ConvertTo<Property>(dt);
return objProperty;
}
}
MY MVC 4 ActionResult就像
public ActionResult Index()
{
ViewBag.Message = "Modify this template to jump-start your ASP.NET MVC application.";
/*
==> this ServiceReference1 is not accessible here....!
var obj = new ServiceReference1.BuildTrackerServiceClient();
*/
var objct = obj.DoWork();
return View();
}
我曾尝试过!
答案 0 :(得分:0)
使用WCF Web服务,您只能传输基本类型。将列表更改为数组并再次尝试。