1
我需要將多個對象從應用程序傳遞到使用服務堆棧的其他服務。我需要這樣做如何用對象列表聲明servicestack RestService?
EventLogService : RestServiceBase<List<EventLogData>>
它沒有給出任何構建錯誤。但操作名稱被列爲「List`1」而不是名稱。
我有這行代碼來聲明APPHOST()
public AppHost() : base("Rest WCF", typeof(EventLogService).Assembly) { }