I'm using an EDM model in my project.
When I insert russian words in the database via a post request I get ??????
Controller:
[Authorize]
[HttpPost]
public string DescEdit(FormCollection formValues)
{
var CurrentUserPhoto = User.Identity.Name;
string x = Request.Form["id"];
Int64 id = Convert.ToInt64(x);
photos upPhotoDesc = photosRepository.GetPhotosById(id, CurrentUserPhoto);
upPhotoDesc.description = Request.Form["value"];
photosRepository.Save();
return Request.Form["value"];
}
Database code:
CREATE TABLE `photos` (
`id` bigint(255) NOT NULL AUTO_INCREMENT,
`done` tinyint(1) NOT NULL DEFAULT '0',
`imgsmall` varchar(255) NOT NULL DEFAULT '',
`imgcrop` varchar(255) NOT NULL DEFAULT '',
`imgmiddle` varchar(255) NOT NULL DEFAULT '',
`imgbig` varchar(255) NOT NULL DEFAULT '',
`full_size` varchar(255) NOT NULL DEFAULT '',
`description` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`permission` tinyint(1) NOT NULL DEFAULT '0',
`userid` int(11) NOT NULL DEFAULT '0',
`userlogin` varchar(255) NOT NULL DEFAULT '',
`rating` smallint(5) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `indx_photos_1` (`id`,`userlogin`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_unicode_ci;
The Entity Framework enables developers to work with data in the form of domain-specific objects and properties, such as customers and customer addresses, without having to concern themselves with the underlying database tables and columns where this data is stored.
Entity Framework 4.1, 4.2, 4.3, and 5.0 and all patches of these versions are out-of-support and should not be used. The NuGet packages for Entity Framework 4.1, 4.2, 4.3, and 5.0 are no longer supported.
Entity Framework (EF) is an object-relational mapper that enables . NET developers to work with relational data using domain-specific objects. It eliminates the need for most of the data-access code that developers usually need to write. Get it: Add this to your project and start taking advantage of this powerful O/RM.
Add charset=utf8
to the connection string of Entity Framework
Here is a working add node:
<add name="photostorageEntities"
connectionString="metadata=res://*/Models.Photos.csdl|res://*/Models.Photos.ssdl|res://*/Models.Photos.msl;provider=MySql.Data.MySqlClient;provider connection string="server=ServerIP;User Id=UID;password=PASS;Persist Security Info=True;database=photostorage; Charset=utf8""
providerName="System.Data.EntityClient" />
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With