Can new Integration Libraries with Number (nullable) Integer Properties please compile properly?
Dear Symantec,
I have been creating an Integration Library and exactly following the following video:
My "User Defined Type with DB Mapping" Integration Library has two properties, SessionID (Text) and SubSessionNumber (Nullable Integer). However, when I come to compile it, I get the following compilation errors:
If you open up the generator by double-clicking upon one of the compilation errors, then you can see that the following lines are at fault:
VariableOrValueDataType _SubSessionNumberValue = new VariableOrValueDataType(typeof(System.Nullable`1[[System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]));
[Category("SubSessionNumber")]
[VariableType(typeof(System.Nullable`1[[System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]))]
I think that it is the ` characters that are ruining things.
If I remove the Property or make the Property into a non-nullable integer, then the generator compiles properly.
Can this be fixed so that we can create these objects properly?
Kindest regards,
QuietLeni