我正在使用CodeCirst的MVC来创建一个多语言的网站,我已经按照本教程(http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/creating-an-entity-framework-data-model-for-an-asp-net-mvc-application)了,但我遇到了一些问题......
我会试着详细解释一下,很抱歉这个长期的问题......
假设我有一个具有以下属性(Date,Name)的实体T,其中name属性应该被本地化;我已经构建了以下实体来表示实体及其本地化版本:
public class T
{
#region Primitive Properties
public int TID { get; set; }
[DisplayFormat(DataFormatString = "{0:d}")]
[Required]
public DateTime DateCreated { get; set; }
#endregion
#region Localized Properties
protected T_Locale TWithCurrentLocaleOrCreate
{
get
{
T_Locale t = this.T_Locales.SingleOrDefault(record => record.LocaleID == Locale.CurrentLocale.LocaleID);
// If the object is not available with the current locale,
// create it
if (t == null)
{
t = new T_Locale
{
Locale = Locale.CurrentLocale
};
this.T_Locales.Add(t);
}
return t;
}
}
protected T_Locale TWithCurrentLocaleOrDefault
{
get
{
T_Locale t = this.T_Locales.SingleOrDefault(record => record.LocaleID == Locale.CurrentLocale.LocaleID);
// If the object is not available with the current locale,
// return it with the default locale
if (t == null)
{
t = this.T_Locales.SingleOrDefault(record => record.LocaleID == Locale.DefaultLocale.LocaleID);
// If the object is not available with the current locale,
// return it with any available locale
if (t == null)
t = this.T_Locales.First();
}
return t;
}
}
[NotMapped]
public string Name
{
get
{
return this.TWithCurrentLocaleOrDefault.Name;
}
set
{
this.TWithCurrentLocaleOrCreate.Name = value;
}
}
#endregion
#region Navigation Properties
public virtual ICollection<T_Locale> T_Locales { get; set; }
#endregion
}
public class T_Locale
{
#region Primitive Properties
[Key]
[Column(Order = 0)]
public int TID { get; set; }
[Key]
[Column(Order = 1)]
public int LocaleID { get; set; }
[Required]
public string Name { get; set; }
#endregion
#region Navigation Properties
public virtual T T { get; set; }
public virtual Locale Locale { get; set; }
#endregion
}
public class Locale
{
#region Primitive Properties
public int LocaleID { get; set; }
[Required]
public string Name { get; set; }
[Required]
public string DisplayName { get; set; }
#endregion
#region Navigation Properties
public virtual ICollection<T_Locale> T_Locales { get; set; }
#endregion
#region Current Locale Properties
protected static string DefaultLocaleName
{
get
{
return "en";
}
}
private static Locale _DefaultLocale;
public static Locale DefaultLocale
{
get
{
DatabaseContext database = new DatabaseContext();
_DefaultLocale = database.Locales.SingleOrDefault(record => record.Name == Locale.DefaultLocaleName);
return _DefaultLocale;
}
}
private static Locale _CurrentLocale;
public static Locale CurrentLocale
{
get
{
DatabaseContext database = new DatabaseContext();
if (_CurrentLocale == null)
{
// To Avoid the large logic behind for getting the current locale I’m using the default one here…
_CurrentLocale = Locale.DefaultLocale;
}
return _CurrentLocale;
}
}
#endregion
}
其中T:是我感兴趣的实体,T_Locale是T的本地化版本,只包含应该本地化的属性,并且您可能会注意到我在T中编写了NotMapped属性(名称获取属性的当前本地化版本Name ...此属性应返回具有当前语言环境的Name,并且在调用setter时,应修改具有当前语言环境的Name的值。
我使用Razor视图为T创建了一个控制器,没有任何进一步的修改,当导航到创建视图时,我得到了正确的视图,但是当点击创建按钮时,我遇到了方法的异常“ TWithCurrentLocaleOrDefault“因为我注意到它在调用setter之前从Name属性的getter调用了......因为刚刚创建的T实例没有本地化版本,所以我从方法中得到了异常。
我不知道我在这里是否遗漏了什么,或者我是否使用了错误的逻辑,所以你能否向我解释一下是什么问题,或者指出一个好的教程或示例代码来处理本地化使用MVC。
更新
问题在于我创建了多个Context实例,所以我想我应该改变我在访问任何本地化实体的当前本地化实例(当前T_Locale of T)时使用的逻辑,如果有的话处理这种情况有什么好的逻辑,请指出......
对于这个很长的问题再次抱歉,非常感谢任何帮助,并提前多多感谢。
答案 0 :(得分:0)
我决定使用Griffin本地化,因为它非常容易实现并且非常易于管理。有关代码项目的非常好的教程:Localization in ASP.NET MVC with Griffin.MvcContrib