qCustomerVendorNames = ( From tmpCust In m_dbCustomersVendors.Customers Select New With { .Name = tmpCust.CustomerName, .CompanyType = "Customer", tmpCust.UniqueID } ).Union( From tmpVend In m_dbCustomersVendors.Vendors Select New With { .Name = tmpVend.VendorName, .CompanyType = "Vendor", tmpVend.UniqueID } )
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)