知识类
落笔浮生
人间不值得
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
关于海关税率的一些sql计算
关于税率系统做的计算: SELECT id, business_no, trade_total 总价, Rate, g_amount 关税 , isnull(copG_amount, 0) AS copG_amount , SUM(copG_amount) OVER (PARTITION BY business_no ) AS TotalG_amount, SUM(copZG_am...原创 2020-04-03 09:12:08 · 589 阅读 · 0 评论 -
Json
Json数组,Json对象,Json字符串 Json数组包含多个Json对象 Json字符串 Json对象: var x={“id”:1,“name”:“张三”}; Json数组: var y=[{“id”:1,“name”:“张三”},{“id”:2,“name”:“张三”},{“id”:3,“name”:“张三”}]; Json字符串: var z=’{“id”:1,“name”:“张三”}’...原创 2018-11-07 15:59:03 · 292 阅读 · 0 评论 -
属性"cname"是对象的键信息的一部分,不能修改
遇到此类问题首先要想到数据库的问题,因为cid是其中一张表的外键,所以要想到两张表的外键关系,大家可以参考下,可以把两张表的id都变成主键试一下 //指定产品类别修改类别信息 public IHttpActionResult postcategory(int id,string name) { //先获取指定id...原创 2018-11-15 11:11:34 · 2951 阅读 · 0 评论 -
面试题分享1.1(post,get的区别,Application 、e Cookie 和 和 n Session,)
1.post 、t get 的区别 get 的参数会显示在浏览器地址栏中,而 post 的参数不会显示在浏览器地址栏中; 使用 post 提交的页面在点击【刷新】按钮的时候浏览器一般会提示“是否重新提交”,而 get 则不会; 用 get 的页面可以被搜索引擎抓取,而用 post 的则不可以; 用 post 可以提交的数据量非常大,而用 get 可以提交的数据量则非常小(2k),受限于网...原创 2018-11-30 16:00:05 · 201 阅读 · 0 评论 -
C#值类型和引用类型的参数传递(ref,out)实例分析
(ref,out) using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyBlog { class REFOUTTO { public vo...原创 2019-09-19 11:16:37 · 457 阅读 · 0 评论
分享