我的程序中有很多通用方法,它们将一些生成的实体作为参数.所以,方法如:
public void DoHerpDerp<EntityType>()
虽然这很好并且完成了工作,但我的方法的用户仍然可以将他们想要的任何东西作为通用参数传递(并使应用程序崩溃).我想严格限制它们为实体生成的对象(我正在使用Database First方法).我想写的是:
public void DoHerpDerp<EntityType>() where EntityType : BaseEntity
解决方法
您可以通过调整T4模板来更改实体的生成.
这是用于生成类声明的T4模板(例如Model.tt)的相关部分,例如,“部分类MyEntity”:
public string EntityClassopening(EntityType entity) { return string.Format( CultureInfo.InvariantCulture,"{0} {1}partial class {2}{3}",Accessibility.ForType(entity),_code.SpaceAfter(_code.AbstractOption(entity)),_code.Escape(entity),_code.StringBefore(" : ",_typeMapper.GetTypeName(entity.BaseType))); }
至
public string EntityClassopening(EntityType entity) { return string.Format( CultureInfo.InvariantCulture,"{0} {1}partial class {2}{3}{4}",_typeMapper.GetTypeName(entity.BaseType)),string.IsNullOrEmpty(_code.StringBefore(" : ",_typeMapper.GetTypeName(entity.BaseType))) ? _code.StringBefore(" : ","BaseClass") : ""); }