我正在使用Typewriter来基于EF核心实体生成TypeScript模型,但是在这些模型上,我们添加了自定义属性和方法,只要实体发生更改,这些属性和方法就会被Typewriter覆盖,可以通过任何方式指定打字机在重新生成模型时应将代码保留在ts模型的一部分内吗?
breeze.js已经制作了一个TypeScriptEntityGen,它可以那样工作,但是与Typewriter相比,实现起来很麻烦,所以我宁愿坚持使用Typewriter。
export class InternationalOrder extends DomainModel.NorthwindIB.Order {
/// <code> Place custom code between code tags
/// </code>
// Generated code. Do not place code below this line.
customsDescription: string;
exciseTax: number;
}