JetEntityFrameworkProvider icon indicating copy to clipboard operation
JetEntityFrameworkProvider copied to clipboard

Microsoft Access (Jet) Entity Framework provider

Results 32 JetEntityFrameworkProvider issues
Sort by recently updated
recently updated
newest added

the generated SQL ist similar to ALTER TABLE `theTable` ADD DEFAULT 'the default' FOR `theColumn`; . the SQL that would work (in Access 2003): ALTER TABLE `theTable` ALTER COLUMN `theColumn`...

A Migration generated from scaffolded tables with the fluent API fails to generate the correct Create Table statement for a longchar column with a default value. Removing the default allowed...