In the "datagrid" view of an open table of data, how can I type a new line character into an nvarchar field directly in SSMS?
Is there an alt code?
You can't.
Use a "new query" window instead, and do a manual update:
UPDATE mytable
SET textvalue =
'This text
can include
line breaks'
WHERE rowid = 1234