|
|
|
|
|
by beart
103 days ago
|
|
I agree with your first point. I've seen this same issue crop up in several other ORMs. As to your second point. VARCHAR uses N + 2 bytes where as NVARCHAR uses N*2 + 2 bytes for storage (at least on SQL Server). The vast majority of character fields in databases I've worked with do not need to store unicode values. |
|
This has not been my experience at all. Exactly the opposite, in fact. ASCII is dead.