LLBLGen Pro version: 2.6 Final
Runtime library: 2.6.8.1114
SQL Server version: 9.00.3042.00 (SqlServerDQECompatibilityLevel=2)
Since adding a typeconverter which converts numeric to enum to llblgen which seems to be working fine, my entities are all getting warnings on compilation due to the Nullable in the below code:
public virtual Nullable<Foo> FooId
It says rewrite as Foo? instead of Nullable<Foo>.
Is there any way to get the generated code to emit this?
Thanks