学海无涯

导航

上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 43 下一页

2023年9月9日 #

制造业系统流程

摘要: 平台化、一体化”的制造企业数字化系统架构,不同于传统信息化架构“先构建业务、再集成治理”的建设思路,它强调“先构建平台、再迭代业务”,真正实现全流程业务的“数据流不治而顺、业务流双向联动”,系统架构参考图如下: 阅读全文

posted @ 2023-09-09 13:43 宁静致远. 阅读(50) 评论(0) 推荐(0) 编辑

2023年9月8日 #

Sql 日期转换

摘要: Select CONVERT(varchar(100), GETDATE(), 20) 2023-09-08 14:09:05 阅读全文

posted @ 2023-09-08 14:09 宁静致远. 阅读(9) 评论(0) 推荐(0) 编辑

2023年9月7日 #

Nginx 安装

摘要: 官方网站: https://nginx.org/ 下载地址:http://nginx.org/en/download.html 阅读全文

posted @ 2023-09-07 13:49 宁静致远. 阅读(3) 评论(0) 推荐(0) 编辑

2023年9月5日 #

Dapper模糊查询 Like

摘要: public async Task<IReadOnlyList<ProductView>> GetProductViewAsync(ProductQueryParameter queryParameter) { if (!string.IsNullOrEmpty(queryParameter.Nam 阅读全文

posted @ 2023-09-05 21:54 宁静致远. 阅读(237) 评论(0) 推荐(0) 编辑

sqlserver中怎么将一列数据拼接成一个字符串

摘要: SELECT b.name +',' FROM dbo.TechnologyColor a join [dbo].[CustomColor] b on a.customcolorid=b.id WHERE ProductId=345882800324677 FOR xml PATH('') SELE 阅读全文

posted @ 2023-09-05 16:51 宁静致远. 阅读(14) 评论(0) 推荐(0) 编辑

2023年9月3日 #

使用 HttpClient 类发出 HTTP 请求

摘要: https://learn.microsoft.com/zh-cn/dotnet/fundamentals/networking/http/httpclient 使用 HttpClient 类发出 HTTP 请求 项目 2023/08/01 5 个参与者 反馈 本文内容 创建 HttpClient 阅读全文

posted @ 2023-09-03 21:40 宁静致远. 阅读(138) 评论(0) 推荐(0) 编辑

2023年9月2日 #

打开文件,保存文件

摘要: private void ShowNewForm(object sender, EventArgs e) { Form childForm = new Form(); childForm.MdiParent = this; childForm.Text = "窗口 " + childFormNumb 阅读全文

posted @ 2023-09-02 11:34 宁静致远. 阅读(14) 评论(0) 推荐(0) 编辑

2023年9月1日 #

DevExpress各大版本支持的VS版本和支持的.net版本图

摘要: 阅读全文

posted @ 2023-09-01 09:09 宁静致远. 阅读(397) 评论(0) 推荐(0) 编辑

HttpClient

摘要: var httpClient = new HttpClient(); var url = new Uri("http://localhost:57679/api/Technology/All"); var response = httpClient.GetAsync(url).Result; if( 阅读全文

posted @ 2023-09-01 09:03 宁静致远. 阅读(17) 评论(0) 推荐(0) 编辑

newtonsoft.json

摘要: https://www.newtonsoft.com/json Product product = new Product(); product.Name = "Apple"; product.Expiry = new DateTime(2008, 12, 28); product.Sizes = 阅读全文

posted @ 2023-09-01 08:50 宁静致远. 阅读(14) 评论(0) 推荐(0) 编辑

上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 43 下一页