0
The string fields of the tables in my database are coming with Fixed length as true. So if the size is 60, and I save a string with a size of 30, it fills the string with spaces up to the full size. If it is in edmx and manually set to false it works. But how to set it to false as default in SQL Server?
Where’s your EF Code First model, pfv?
– Marcelo Shiniti Uchimura
is database first
– Marceloawq
is normal, as I always do. nvarchar(60)
– Marceloawq
NVARCHAR or NCHAR?
– Marcelo Shiniti Uchimura
nvarchar(60) ..
– Marceloawq
After or before Fixed Length false?
– Marcelo Shiniti Uchimura
restarted the sql server service, updated edmx and worked
– Marceloawq