https://github.com/julienxx/gettingstartedwithfsharpanddotnetcore
Getting Started With F# And .NET Core examples
https://github.com/julienxx/gettingstartedwithfsharpanddotnetcore
dotnet-core fsharp tutorials
Last synced: 24 days ago
JSON representation
Getting Started With F# And .NET Core examples
- Host: GitHub
- URL: https://github.com/julienxx/gettingstartedwithfsharpanddotnetcore
- Owner: julienXX
- Created: 2017-06-11T16:22:24.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-12T15:59:38.000Z (almost 8 years ago)
- Last Synced: 2025-04-09T23:11:33.816Z (24 days ago)
- Topics: dotnet-core, fsharp, tutorials
- Language: F#
- Homepage:
- Size: 2.93 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting Started With F# And .NET Core
In the process of learning F#, I found that examples targetting F# and .NET Core were quite difficult to find.
I created this repo to document how I did some basic tasks.## Implemented Tasks
- [x] ParsingJsonFromHttpCall: Making an HTTP call to an API and parsing the JSON response
- [x] ConnectingToPostgres: Retrieving data from PostgreSQL
- [ ] UsingPostgres: Storing data in PostgreSQL
- [ ] UsingRabbitMQ: Sending and consuming messages to and from RabbitMQ
- [ ] UsingRedis: Storing and retrieving data from Redis
- [ ] ?## Running a task
```
λ cd ParsingJsonFromHttpCall
λ dotnet restore
λ dotnet run
```