上一页 1 ··· 48 49 50 51 52 53 54 55 56 ··· 103 下一页
摘要: SQL 语句有很多函数如len(),now()等等。如何来生成这些函数。最近研究也写办法共大家参考。 一.首先建立一个建一个扩展类,控制只能允许这些函数出现,如果出现其他函数就直接报异常。 1 public static class SQLMethods 2 { 3 public static bo 阅读全文
posted @ 2022-04-11 11:26 China Soft 阅读(145) 评论(0) 推荐(0) 编辑
摘要: sql有有四中基本语句,分别是增删改查,在建立model后如何生成这四中sql语句,降低开发时间。 我们先模拟出一张学生表: public class Student { public int id { get; set; } public string name { get; set; } pub 阅读全文
posted @ 2022-04-11 10:33 China Soft 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 使用EF做更新时,若没有进行跟踪会默认全字段更新,那怎么做到只更新我们想要更新的字段呢? 1 /// <summary> 2 /// 修改指定属性的单条数据 3 /// </summary> 4 /// <typeparam name="T">实体</typeparam> 5 /// <param 阅读全文
posted @ 2022-04-11 10:20 China Soft 阅读(515) 评论(0) 推荐(0) 编辑
摘要: 如今mysql普遍的插入方式有如下两种: 1、循环单条插入 <insert id="insert" parameterType="com.chargeProject.consumer.entity.Test"> insert into test (id, nums, name) values (#{ 阅读全文
posted @ 2022-04-11 09:29 China Soft 阅读(686) 评论(0) 推荐(0) 编辑
摘要: https://www.donet5.com/Home/Doc 阅读全文
posted @ 2022-04-11 09:24 China Soft 阅读(67) 评论(0) 推荐(0) 编辑
摘要: ymnets ruoyinet https://gitee.com/izory/ZrAdminNetCore/tree/net6.0/ 阅读全文
posted @ 2022-04-11 09:00 China Soft 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 您的问题有点误导,因为它询问如何在Web浏览器中打开本地页面,但您实际上想知道如何启动Web服务器以便可以在浏览器中打开它. 服务/ tmp / data文件夹的示例: http.Handle("/", http.FileServer(http.Dir("/tmp/data"))) panic(ht 阅读全文
posted @ 2022-04-09 11:29 China Soft 阅读(388) 评论(0) 推荐(0) 编辑
摘要: https://geektutu.com/post/hpg-reduce-size.html 1 基线用例 减小编译后的二进制的体积,能够加快程序的发布和安装过程。接下来呢,我们分别从编译选项和第三方压缩工具两方面来介绍如何有效地减小 Go 语言编译后的体积。 我们采用同一个测试工程来测试不同方式的 阅读全文
posted @ 2022-04-09 09:05 China Soft 阅读(97) 评论(0) 推荐(0) 编辑
摘要: package mainimport ( "fmt" "net/http" "os/exec" "runtime")func open(url string) error { var cmd string var args []string switch runtime.GOOS { case "w 阅读全文
posted @ 2022-04-09 09:00 China Soft 阅读(68) 评论(0) 推荐(0) 编辑
摘要: Go语言出现:CreateProcess error=216, 该版本的 %1 与你运行的 Windows 版本不兼容。请查看计算机的系统信息,然后联系软件发布者https://blog.csdn.net/qq_42956993/article/details/113928050 阅读全文
posted @ 2022-04-09 08:51 China Soft 阅读(545) 评论(0) 推荐(0) 编辑
上一页 1 ··· 48 49 50 51 52 53 54 55 56 ··· 103 下一页