我正在使用RazorEngine
进行Razor模板解析并尝试使用其Roslyn代码。
我知道我的问题是我在剃刀视图中使用了基类型(ViewBase<t>
),而且它没有被构造(因为它有一个ctor参数)。
然而,经过大量的谷歌搜索,我找不到告诉Emit()
如何制作我的类型实例的方法。
下面是它使用的代码 - 源代码生成正常,下面包含省略的版本。
我可以提供某种类型的工厂,可以用来生成这种类型吗?
当我调用emit时,我得到错误There is no argument given that corresponds to the required formal parameter 'componentContext' of 'ViewBase<MyModelType>.ViewBase(IComponentContext)'
- 那么如何告诉emit()如何创建我的类型ViewBase<T>
的实例
创建一个空的CTOR工作正常 - 但不是我需要的。
public override Tuple<Type, CompilationData> CompileType(TypeContext context)
{
var sourceCode = GetCodeCompileUnit(context);
var assemblyName = GetAssemblyName(context);
(new PermissionSet(PermissionState.Unrestricted)).Assert();
var tempDir = GetTemporaryDirectory();
var sourceCodeFile = Path.Combine(tempDir, String.Format("{0}.{1}", assemblyName, SourceFileExtension));
File.WriteAllText(sourceCodeFile, sourceCode);
var references = GetAllReferences(context);
var compilation =
GetEmptyCompilation(assemblyName)
.AddSyntaxTrees(
GetSyntaxTree(sourceCode, sourceCodeFile))
.AddReferences(GetMetadataReferences(references));
compilation =
compilation
.WithOptions(
CreateOptions(context)
.WithOutputKind(OutputKind.DynamicallyLinkedLibrary)
.WithPlatform(Platform.AnyCpu)
.WithSourceReferenceResolver(new RazorEngineSourceReferenceResolver(sourceCodeFile)));
var assemblyFile = Path.Combine(tempDir, String.Format("{0}.dll", assemblyName));
var assemblyPdbFile = Path.Combine(tempDir, String.Format("{0}.pdb", assemblyName));
var compilationData = new CompilationData(sourceCode, tempDir);
using (var assemblyStream = File.Open(assemblyFile, FileMode.Create, FileAccess.ReadWrite))
using (var pdbStream = File.Open(assemblyPdbFile, FileMode.Create, FileAccess.ReadWrite))
{
var opts = new EmitOptions()
.WithPdbFilePath(assemblyPdbFile);
var pdbStreamHelper = pdbStream;
if (IsMono())
{
opts = opts.WithDebugInformationFormat(DebugInformationFormat.PortablePdb);
}
var result = compilation.Emit(assemblyStream, pdbStreamHelper, options: opts);
}
}
我生成的视图代码
namespace CompiledRazorTemplates.Dynamic
{
#line default
#line hidden
;
using System;
//my load of other using statements...
public class RazorEngine_99d043dd3e3d4c3ca787d42dd7a0bb6b : ViewBase<MyModelType>
{
#line hidden
public RazorEngine_99d043dd3e3d4c3ca787d42dd7a0bb6b()
{
}
#pragma warning disable 1998
public override async Task Execute()
{
..... OMITTED
}
}
}
public ViewBase(IComponentContext componentContext)
{
Contract.Requires(componentContext != null);
_componentContext = componentContext;
}
答案 0 :(得分:2)
你问的是Razor编译器,而不是Roslyn编译。
我认为没有办法做到这一点。
但是,您可以使用Roslyn CSharpSyntaxRewriter
查找SyntaxTree
中的现有构造函数,并将其重写为&amp;传递参数。