When using WSI to retrieve information, is it possible to specify which fields are wanted?
For example a simple operation to get all Manufacturers gets the entire table:
<AspDotNetStorefrontImport Verbose="false">
<GetEntityHelper EntityType="Manufacturer"/>
</AspDotNetStorefrontImport>
Is there a way to get only ID and Name?
I know I can do this using embedded SQL but then I have to include the db name and we have multiple copies of aspdnsf and they all have different db names which makes the programming much more difficult.