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);
}
}