Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Created June 2, 2022 19:28
Show Gist options
  • Save awswithdotnet/ea74e6fd133f789c9a07248b6f644ae2 to your computer and use it in GitHub Desktop.
Save awswithdotnet/ea74e6fd133f789c9a07248b6f644ae2 to your computer and use it in GitHub Desktop.
minimal-api Proram.cs post step 1
var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
app.MapGet("/values", (HttpRequest request) => {
return request?.Query?.Select(s=> s.Value.ToString()).ToArray() ?? new string[0];
}
);
app.Run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment