Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Created June 2, 2022 19:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awswithdotnet/04f0ef3ec4d6356b921761a6dae0b594 to your computer and use it in GitHub Desktop.
Save awswithdotnet/04f0ef3ec4d6356b921761a6dae0b594 to your computer and use it in GitHub Desktop.
minimal-lambda Program.cs endpoint
app.MapGet("/values", (HttpRequest request) => {
return request?.Query?.Select(s=> s.Value.ToString()).ToArray() ?? new string[0];
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment