We trying to save article (long string) in database column using EF6 database first, the article character is more than 4000 char so we changed the column type from NVARCHAR(4000) to VARCHAR(8000) but after when we tried to save in database, We found the data saved as quationmark '???? ???? ????' , we changed the column collation to Arabic_CI_AI as following :
ALTER TABLE laws.ArticleContent ALTER COLUMN TextAr VARCHAR(8000) COLLATE Arabic_CI_AI
but still have the same problem also we update the Edmx after we changed the column properties but still the same, and we change the property in Edmx to Unicode = true and we got the same, so please any help
We use MSSQL2008R2 and EF6 database first
the table after insert :