everything was working fine while the database of my asp.net mvc 2 site was in the app_data folder , after i transfered it to sqlserver express all the Cyrillic data i added after that appears in ????? :( I'm using nvarchar for my fields and collation is set to Cyrillic and yet .. ?????
any suggestions are appreciated
edit ://
[HttpPost]
public ActionResult AddCity(CityInfo cityInfo)
{
try
{
// TODO: Add insert logic here
if (ModelState.IsValid)
{
var dbM = new moonDB2();
dbM.CityInfoes.AddObject(cityInfo);
dbM.SaveChanges();
return RedirectToAction("Index");
}
else
{
return View(cityInfo);
}
}
catch
{
return View();
}
}