2
How do I add a comment to a column. In sql I do so:
ALTER TABLE Tabela MODIFY COLUMN 'nome' varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'Teste' AFTER `nome`;
How to do in Entity core framework Fluent api?
2
How do I add a comment to a column. In sql I do so:
ALTER TABLE Tabela MODIFY COLUMN 'nome' varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'Teste' AFTER `nome`;
How to do in Entity core framework Fluent api?
Browser other questions tagged sql entity-framework
You are not signed in. Login or sign up in order to post.