Reputation: 1257
I obtain data written in several languages from database and show it in silverlight datagrid, but all the non-latin symbols (e.g. Russian, French, German) is displayed as '?'. How can i resolve this issue?
Thanks.
Upvotes: 0
Views: 827
Reputation: 3593
Looks like you store your data in database as 'text' or 'varchar'. If that is true than change type to 'ntext' or 'nvarchar'.
Upvotes: 1