| Ritesh 2004-12-27, 10:12 am |
| I made a marshal data named as Zip_Code in line item level
And i want to access it using OrderGroupSearch
I am writing code as
OrderGroupSearchOptions Options = new OrderGroupSearchOptions();
Options.FetchOrderFormInformation = true;
Options.FetchLineItemInformation = true;
Options.Columns.Add("OrderFormLineItems.[Zip_Code]");
DataSet ds = new DataSet();
ds = ordGrpSearch.Search(Options);
But it is giving error that Zip_Code column does not exist so can anybody solve the problem as how to access marshal data using this method
Also i have zipcode in another table named as OrderGroupAddresses but when i use that table as
Options.Columns.Add("OrderGroupAddresses.[Zip_Code]");
it is not taking the table name as a valid name
Can anybody suggest what to do in this case
Regards,
Ritesh |