Linqpad 6 支持.Net Core。
当我在 Visual Studio 中创建新的空 .Net Core API 解决方案时,我得到一个带有简单演示控制器的简单模板。
当我在 Visual Studio 中运行它时,它使用命令行服务器(kestrel)来运行项目:
所以我想看看是否可以在 Linqpad 6 中运行这个项目。
所以我已经安装了所有 nuget 并将代码复制到 Linqpad :
void Main()
{
CreateWebHostBuilder(new string[] { "" }).Build().Run();
}
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>();
[Route("api/[controller]")]
[ApiController]
public class ValuesController : ControllerBase
{
[HttpGet]
public ActionResult<IEnumerable<string>> Get()
{
return new string[] { "value1", "value2" };
}
}
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
//if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseMvc();
}
}
我确实看到它现在正在监听:
但是调用http://localhost:5000/api/values
do 得到 acked ,但没有来自控制器的 json 值响应:
问题:
如何让 Linqpad 从控制器返回值?(一个简单的json)
慕村9548890
相关分类