我的程序中有很多通用方法,它们将一些生成的实体作为参数.所以,方法如:
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") : ""); }
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。