Autigen mixing code first and auto generated types

In AutoQuery feature if there is a code first class the service use it even though the table has been modified and has different columns.

I’ve got a simple Dto

Id long
Column1 text

On db I’ve got
I’d long
Column1 text
Column2 text

It is possible to extend code first class emmitting a new derived class with new columns and use it in the services and populate the Column2?
In the Ui feature the Column2 compare but it’s not writed or read on the db.

Thanks Gianmaria

Can you extend an auto generated type? No. Instead of trying to do type acrobatics with auto generated classes just export it and extend it normally in C#.

Note: If your Type is not the same name as the Table then you’d need to use [Alias] attribute to reference the table.