I'm using iAnywhere.Data.SQLAnywhere.v4.5, runtime version: v4.0.30319, Version 12.0.1.38734 VisualStudio 2012 When adding a column via Entity Framework:
or
This has a result that a column is created with Type of BIT in the remote client, BUT Unfortunately, the column is not nullable. This approach DOES work for other types like integer. Workaround 1. perform following query:
This only works when the table has no data. if it already has data => exception => "Table must be empty" Workaround 2. use regular sql instead of EF commands:
Where do I report this? Anyone seen anything like this before? |