// Code is generated using LLBLGen Pro version: 2.5
// Code is generated on:
// Code is generated using templates: SD.TemplateBindings.SharedTemplates.NET20
We use LLBLGen 2.5 with Oracle, and have the following situation:
All tables have a secondary key called "DIPSID", with a unique constraint. This is never the primary key of the table. In some cases we wish to use inheritance in LLBLGen. E.g. a table called Patient inherits from another table called Person.
In this setting for both entities a method
public IPredicateExpression ConstructFilterForUCDipsid()
is generated. This causes the following warning:
'xx.Generated.EntityClasses.PasientEntity.ConstructFilterForUCDipsid()' hides inherited member 'xx.Generated.EntityClasses.PersonEntity.ConstructFilterForUCDipsid()'. Use the new keyword if hiding was intended.
We do not want any warnings at all from our code, including generated code. Do you have any recommendation for how to fix this? Having to edit generated code each time it is generated is highly unwanted as well, we do want a better solution
With regards
Helene