I am using version 1.0.2005.1 for a legacy project and my target DB is MS SQL Server 2000. I have a table called Estimate that has several units of measure which are resolved via a m:1 relation to a parent table called UnitOfMeasure (PK is UnitOfMeasureID). Each relationship is mapped to a different field in the child. The Estimate table has the following fields for example:
Estimate.MaterialQtyUnitOfMeasureID m:1 to UnitOfMeasure
Estimate.LaborQtyUnitOfMeasureID m:1 to UnitOfMeasure
Estimate.UnitCostUnitOfMeasureID m:1 to UnitOfMeasure
etc.
The generated code builds prefetch paths that are named like this:
PrefetchPathUnitOfMeasure
PrefetchPathUnitOfMeasure_
PrefetchPathUnitOfMeature__
etc.
Other than manually modifying the names of the Fields mapped on relations in the designer, is there an easy way to name the prefetch paths? Something like:
PrefetchPathMaterialQtyUnitOfMeasure
PrefetchPathLaborQtyUnitOfMeaure
PrefetchPathUnitCostUnitOfMeasure
Thanks for your help.