我所做的本地化是使用单独的 .resx 文件中的资源。但我的要求是使用 sql 数据库进行本地化。我对从数据库中访问文化信息的资源有点困惑,我的 .resx 文件代码是
System.Globalization.CultureInfo ci = new System.Globalization.CultureInfo(culture);
System.Threading.Thread.CurrentThread.CurrentCulture = ci;
System.Threading.Thread.CurrentThread.CurrentUICulture = ci;
任何的想法?