
c#
wp_wnd
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
20200807c#Linq查询
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace TestLinq{ public class Person { public int Id { set; get; } public String name { set; get; } pub原创 2020-08-07 23:22:08 · 129 阅读 · 0 评论 -
SqlCommand 添加参数-与DataAdapter更新
SqlCommand 带参数,带事务。【理论基础】在2.0以前版本的 ADO.NET 中,使用 DataSet 中的更改来更新数据库时,DataAdapter 的 Update 方法每次更新数据库的一行。因为该方法循环访问指定 DataTable 中的行,所以,会检查每个 DataRow,确定是否已修改。如果该行已修改,将根据该行的 RowState 属性值调用相应的 UpdateCommand、InsertCommand 或 DeleteCommand。每一次行更新都涉及网络与数据库之间的双向数据.原创 2020-07-05 16:37:29 · 745 阅读 · 0 评论 -
c# 多线程
Task有连接池:导入空间using System.Collections;using System.Threading;using System.Threading.Tasks;原创 2020-03-29 15:48:51 · 108 阅读 · 0 评论