Load dữ liệu từ 3 table lên datagridview C# | VN-Zoom | Cộng đồng Chia Sẻ Kiến Thức Công Nghệ và Phần Mềm Máy Tính

Adblocker detected! Please consider reading this notice.

We've detected that you are using AdBlock Plus or some other adblocking software which is preventing the page from fully loading.

We need money to operate the site, and almost all of it comes from our online advertising.

Please add vn-z.vn to your ad blocking whitelist or disable your adblocking software. 

All the knowledge we share is completely free. If you are willing, please support us here.

×

Load dữ liệu từ 3 table lên datagridview C#

Chào các bác e muốn load dữ liệu từ 3 table lên datagridview C# cal api nhưng mà e ko biết làm và cũng chưa biết hướng. trước kia lấy dữ liệu 3 table thì cứ join lại với nhau rồi FiedlName= trường thông tin muốn hiển thị là đc. e có đoạn code đây mà nó show toàn bộ tiêu đề như trong data, giờ muốn thay đổi tiêu đề thành tiếng việt và lấy dữ liệu từ 3 bảng phải chỉnh sửa như nào ạ
private void loaddataRoom()
{
try
{

RoomIndexRS result = apiOffice.getRoom(new QueryRQ()).Result;
if (result == null)
{
MessageBox.Show("Không lấy được dữ liệu từ server", Program.Setting.Language.GetString("captionerror"), MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
else if (result.Status != 200)
{
MessageBox.Show(result.Error, Program.Setting.Language.GetString("captionerror"), MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
else
{
grdRoom.DataSource = result.Data;
grdRoom.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells;
grdRoom.AutoResizeColumns();
grdRoom.AllowUserToResizeColumns = true;
}


catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
 


Top