You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm executing dbContext.Database.GenerateCreateScript() and saving the result to a file (for git-commit and therefore dev-review of changes).
While the file having thousands of lines all using CRLF there are 2 (per user created schema) which just use LF, triggering a VS repair dialog each time you open such file.
The generated problem code looks like that (6 lines):
DO $EF$
BEGIN
IF NOT EXISTS(SELECT1FROM pg_namespace WHERE nspname ='AspNetCoreIdentity') THEN
CREATESCHEMA "AspNetCoreIdentity";
END IF;
END $EF$;
Only line3 (ending with THEN) and line4 (ending with entity";) use LF, all others use CRLF.
The text was updated successfully, but these errors were encountered:
I'm executing
dbContext.Database.GenerateCreateScript()
and saving the result to a file (for git-commit and therefore dev-review of changes).While the file having thousands of lines all using CRLF there are 2 (per user created schema) which just use LF, triggering a VS repair dialog each time you open such file.
The generated problem code looks like that (6 lines):
Only line3 (ending with
THEN
) and line4 (ending withentity";
) use LF, all others use CRLF.The text was updated successfully, but these errors were encountered: