- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[C#] Sử dụng Reactive NET load Big data vào Gridview
Xin chào các bạn, bài viết hôm nay mình sẽ hướng dẫn các bạn sử dụng thư viện Reactive, để load dữ liệu lớn (Big data) bất đồng bộ vào Gridview C# Winform.
[C#] Load BigData Async with Reactive .NET
Reactive .net (Rx.net) là lập trình với các dữ liệu nguồn không đồng bộ.
Một Stream khi chạy bất đồng bộ sẽ sẽ ra một trong 3 cơ chế: OnCompleted
, OnError
và OnNext
.
Để tìm hiểu kỹ về Rx.NET các bạn truy cập vào link sau để xem hướng dẫn cụ thể:
Demo ví dụ dưới đây mình sẽ load dữ liệu Big Data khoảng 1.2 triệu dòng vào data Gridview.
Câu lệnh truy vấn này khi mình thực hiện truy vấn dưới Sqlserver là mất 13s để hoàn thành.
Và yêu cầu là làm sao mình có thể load dữ liệu lớn vậy vào Data Gridview, nếu chúng ta load đồng bộ thì Winform sẽ treo UI.
Dưới đây là mình sẽ sử dụng Rx.Net để load dữ liệu, và mỗi lần load mình chỉ load 5000 dòng (có thể cấu hình thay đổi), và hiển thị dữ liệu cho người dùng.
Giao diện demo ứng dụng Load BigData with RX.NET C#:
Đầu tiên các bạn cần cài đặt thư viện Rx.NET từ nuget
Install-Package System.Reactive -Version 4.3.2
Và dưới đây là Full source code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.Reactive.Linq;
using System.Reactive.Concurrency;
using System.Threading;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
string connectionString = $"Server=xxx;Database=xxx;User Id=xxx; Password =xxxx; Connection Timeout=3";
public class HeThong
{
public string ngay { get; set; }
public string thaotac { get; set; }
public string ip { get; set; }
public string tenmay { get; set; }
}
public IEnumerable<HeThong> GetHeThongs()
{
using (var connection = new SqlConnection(connectionString))
{
using (var cmd = connection.CreateCommand())
{
cmd.CommandText =
"SELECT isnull(format(tgbd_scan, 'dd/MM/yyyy HH:mm:ss'), '') AS ngay , isnull(makien, '') as thaotac, isnull(nguoitd, '') as ip, isnull(makienvao,'') as tenmay FROM dbo.tbl_nhaplieu_wc order by stt DESC";
connection.Open();
var reader = cmd.ExecuteReader();
using (reader)
{
while (reader.Read())
{
var hethong = new HeThong
{
ngay = reader.GetString(0),
thaotac = reader.GetString(1),
ip = reader.GetString(2),
tenmay = reader.GetString(3)
};
yield return hethong;
}
}
}
}
}
IDisposable subcription;
private void button1_Click(object sender, EventArgs e)
{
List<HeThong> companies = new List<HeThong>();
var bindingList = new BindingList<HeThong>(companies);
var source = new BindingSource(bindingList, null);
source.ResetBindings(false);
gridControl1.DataSource = source;
bindingList.ResetBindings();
label1.Text = string.Format("Loading data...");
var obverse = GetHeThongs().ToObservable(ThreadPoolScheduler.Instance).Buffer(Convert.ToInt32(textBox1.Text)).ObserveOn(SynchronizationContext.Current);
subcription = obverse.Subscribe(loadedData =>
{
companies.AddRange(loadedData);
source.ResetBindings(false);
label1.Text = string.Format("Loaded {0} rows", companies.Count.ToString("#,000"));
},
exception => { label1.Text = exception.Message; },
() => { label1.Text = "Finished loading data"; });
}
private void button2_Click(object sender, EventArgs e)
{
subcription.Dispose();
}
}
}
Thanks for watching!