From 480c631d8a152aa833249f764b22d30ef5807463 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=9C=E7=B3=96=E7=BD=91?= <610262374@qq.com> Date: Wed, 24 Nov 2021 09:46:39 +0800 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 93128b5a4..07ccbc3fc 100644 --- a/README.md +++ b/README.md @@ -196,12 +196,12 @@ Split query ### Feature9: Big data insert or update ```cs //Insert A million only takes a few seconds -db.Fastest().BulkCopy(GetList());//性能 比现有任何Bulkcopy都要快30% +db.Fastest().BulkCopy(GetList()); //uupdate A million only takes a few seconds db.Fastest().BulkUpdate(GetList());//A million only takes a few seconds完 -db.Fastest().BulkUpdate(GetList(),new string[]{"id"},new string[]{"name","time"})//无主键用法 +db.Fastest().BulkUpdate(GetList(),new string[]{"id"},new string[]{"name","time"})//no primary key //if exists update, else insert var x= db.Storageable(data).ToStorage();