Load dữ liệu Combobox api | 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 Combobox api

Hello mọi người mình có funtion để load dữ liệu lên combobox như này mà nó lỗi không lấy đc dữ liệu mong mọi người xem lỗi ở 2 dòng trên sai thế nào mà không lấy đc dữ liệu:
private void getlistVendor()
{
VendorIndexRS vendorIndexRS = apiDocument.GetVendor(new QueryRQ()).Result;
List<VendorDetail> lstData= vendorIndexRS.Data.ToList();

cmbVendor.DataSource =lstData;//khong lay dc du lieu datasoure=null
cmbVendor.DisplayMember = "Name";
cmbVendor.ValueMember = "Id";
}
 


Top