Page 1 of 1

Unicode comments that are saved when the table is created are stored as invalid strings.

Posted: Tue 27 Mar 2018 02:56
by ChangHyeon Lee
I typed the Unicode string in Documentation> Summary of EntityDeveloper.

And I create a table in the database with "Update database from model ...".

Like this...

https://newennetworks-my.sharepoint.com ... w?e=GTxssW

Unicode comments are normal in the above figure.

However, the comments in the generated table are stored as invalid comments.
Like this...

https://newennetworks-my.sharepoint.com ... Q?e=822dkw


If I run the following script directly from dbForge Studio, comments are saved normally.

CREATE TABLE msquarev2.CONFIGS (
`KEY` VARCHAR(255) NOT NULL COMMENT '설정 키',
VALUE VARCHAR(255) NULL COMMENT '설정 값',
PRIMARY KEY (`KEY`)
)
COMMENT '설정 정보 테이블';

Could you fix this problem?

Re: Unicode comments that are saved when the table is created are stored as invalid strings.

Posted: Thu 29 Mar 2018 17:20
by Shalex
Please add "Unicode=true;" to the connection string used by Entity Developer (via Database Explorer). Does this fix the issue?