Abp Wcf結合使用問題

2022-06-27 22:39:12 字數 1607 閱讀 5337

然而在搭建wcf服務時候還是出現個各種bug...

1.no component for supporting the service abp.web.localization.icurrentculturesetter was found...

這個問題在abpgithub上也有人提。解決方案也簡單。就是在wcfmodule裡新增對apb模組abpwebapimodule的注入。

github鏈結

同時在wcfmodule中進行wcf服務注入。示例

1

using

abp.modules;

2using

abp.webapi;

3using

castle.facilities.wcfintegration;

4using

castle.microkernel.registration;

5using

system;

6using

system.collections.generic;

7using

system.linq;

8using

system.reflection;

9using

system.servicemodel;

10using

system.text;

11using

system.threading.tasks;

12using

try.wcf2;

1314

namespace

try15

2526

///27

///註冊wcf服務

並且在.svc中將錶簽service中的內容替換為你注入的服務名稱,在上面我注入了乙個studentservice服務,那麼我在service這邊就是填寫service="studentservice"。如果描述不夠清楚,我稍後會放出我做的demo。

同時說明,該demo為純手工建立沒有在官網下模板製作的。

github專案位址服務端

配套客戶端(wpf)

order by和limit結合使用的問題

在mysql中我們常常用order by來進行排序,使用limit來進行分頁,當需要先排序後分頁時我們往往使用類似的寫法select from 表名 order by 排序字段 limt m,n。但是這種寫法卻隱藏著較深的使用陷阱。在排序欄位有資料重複的情況下,會很容易出現排序結果與預期不一致的問題...

await和promise結合使用的問題

由於目前 2020 的情況,我們寫東西的時候,通過 babel 的轉譯 transpile await 和 async 和 promise 經常會有一起的情況.工作中直接跟蹤 發現有一些序列上的問題需要注意 比如,多個promise一起並行的情況 new promise rel rel ok1 th...

Vim Markdown 結合使用

vim 編輯文件,通過瀏覽器實時檢視 markdown 文件。使用示例 鏈結 或者git clone vim bundle vundle.vim 配置 vimrc set nocompatible filetype off set rtp vim bundle vundle.vim vundle 安...