我在 wcf 服务中有这样的方法
public string PostAllSurveList(List<Survey> surveyList)
{
var surveyDbList = ConstructDbServeyList(surveyList);
foreach (var survey in surveyDbList)
{
_db.surveys.Add(survey);
}
_db.SaveChanges();
return "Successfully Saved";
}
现在我的问题是如何从客户端代码中调用此方法。这意味着首先我必须构建调查列表。我怎样才能构建这个列表。
string reply = client.PostAllSurveList(How can I construct this List?);
为了您的信息,我正在用 C# 编写客户端代码。
提前致谢。