私は2つの日時パラメータをWebgetに渡そうとしますが、正しく動作するようにする方法がわかりません。私のコードを以下に示します。どのようにこの作品。WCFデータサービス[WebGet]日時パラメータ
[WebGet]
public IQueryable<TestTable> GetCallersByDate(string beginDate, string eindDate)
{
testCDREntities context = this.CurrentDataSource;
DateTime startDt = DateTime.Parse(beginDate);
DateTime endDt = DateTime.Parse(eindDate);
var selectedOrders = from table in context.TestTables
where table.Created >= startDt && table.Created <= endDt
select table;
return selectedOrders;
}
URL:
http://localhost:50088/WebService.svc/GetCallersByDate?beginDate=2016/03/23T20:22:30:14&eindDate=2016/03/2T20:13:11:03
私は、誰かが私を助けることができると思いますか? MM:以下のデータが与えられ
少なくとも、これらのスラッシュは問題になります。あなたのデータをURLエンコードします。 – Crowcoder