Vue.NetCore icon indicating copy to clipboard operation
Vue.NetCore copied to clipboard

(已支持sqlsugar).NetCore、.Net6、Vue2、Vue3、Vite、TypeScript、Element plus+uniapp前后端分离,全自动生成代码;支持移动端(ios/android/h5/微信小程序。http://www.volcore.xyz/

Results 145 Vue.NetCore issues
Sort by recently updated
recently updated
newest added

Removes [xmldom](https://github.com/xmldom/xmldom). It's no longer used after updating ancestor dependency [video.js](https://github.com/videojs/video.js). These dependencies need to be updated together. Removes `xmldom` Updates `video.js` from 7.8.2 to 7.20.3 Release notes Sourced from...

dependencies
javascript

Bumps [websocket-extensions](https://github.com/faye/websocket-extensions-node) from 0.1.3 to 0.1.4. Changelog Sourced from websocket-extensions's changelog. 0.1.4 / 2020-06-02 Remove a ReDoS vulnerability in the header parser (CVE-2020-7662, reported by Robert McLaughlin) Change license from...

dependencies

Bumps [http-proxy](https://github.com/http-party/node-http-proxy) from 1.18.0 to 1.18.1. Changelog Sourced from http-proxy's changelog. v1.18.1 - 2020-05-17 Merged Skip sending the proxyReq event when the expect header is present [#1447](https://github.com/http-party/node-http-proxy/issues/1447) Remove node6 support,...

dependencies

install完成後,執行run會發生錯誤 發現 App.vue裡面 22行 應該為,就可以執行成功

![image](https://github.com/cq-panda/Vue.NetCore/assets/12688812/708ec4f0-a8ec-46b9-ab68-75a7f6b63183) 日志输出效果如图

数据库没有这个张表,后台怎么配置

向数据库中写入数据、向中间件服务器中发送消息等若这些操作的速率无法被控制,则可能会引起数据库 拒绝服务、中间件宕机无法响应等问题

目前有这样的需求,根据用户输入的连接字符串来连接到不同的数据库 我采用下面的方式根据用户输入的`connStr`重新设置连接 ``` DBServerProvider.DbContext.Database.SetConnectionString(connStr) ``` 但是访问到的数据还是旧的连接,请问大佬,如何让切换立即生效?

用法如下: ```csharp public override WebResponseContent DownLoadTemplate() { this.IgnoreTemplateExecuting = (columns) => { var list = new List() { "qtyoh", "qtya", "qtyd", "qtyn", "qty5", "qtypu", "qtyt", "qtyso", }; columns.AddRange(list); return columns;...

``` public override WebResponseContent Import(List files) { //导入保存前处理(可以对list设置新的值) ImportOnExecuting = (List list) => { var productIds = list.Select(x => x.ProductName).Distinct().ToList(); foreach (var item in productIds) { Base_Product defectItemExtendData = (Base_Product)_productRepository.FindAsIQueryable(x...