摘要:
阅读全文
摘要:
using RestSharp; using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Text; using System... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ZDWorkflow.Model; using ZDWorkflow.Common; using ZDWorkflow.Common.Extensions... 阅读全文
摘要:
DataTable dt = new DataTable(); var age=dt.Compute("avg(age)",""); var height =dt.Compute("avg(height)",""); DataTable.AsEnumerable().Average(x =>x.Fi 阅读全文
摘要:
一、生成代理类 对于web service服务和wcf的webservice服务,我们都可以通过一个代理类来调用。 怎么写那个代理类呢?通过一个工具生成即可!!微软为我们提供了一个wsdl.exe的Web服务描述语言工具,wsdl.exe从 WSDL 协定文件、XSD 架构和 .discomap 发 阅读全文
摘要:
我们选VS中工具-库程序包管理器-程序包管理器控制台, 这时在VS底部会出现控制台 这时候我们要执行四个操作: 下载安装EF 到工程。PM> Install-Package EntityFramework 开启数据库迁移 PM> Enable-Migrations 添加实体改动对应的数据库改动PM> 阅读全文
摘要:
程序执行会重复 用mysql很长时间,limit是分页的一个好工具, select * from table_a where num = 4 limit 1,10, select * from table_a where num = 4 limit 10,10, 今天突然发现有些数据怎么也不会出来 阅读全文
摘要:
第一步 导出excel 去掉列头,设置文本里面格式 第二步 另存为.txt 第三步 打lazd.txt, 在另存为 保存utf-8格式文本 第四步 打开MySQL 界面 输入本地mysql密码 第五步 输入命令 说明 fields terminated by '\t' 指是txt文本里面字段之间分割 阅读全文
摘要:
using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Web; namespace App_Helper { public abstract class Ex... 阅读全文
摘要:
aspx.net mvc 控制器使用 阅读全文