Hi everyone, this is my first post in reddit, sorry if i made something wrong.
I am a recent graduate waiting for my degree.


I’m working on an online portfolio using Github, so i wanted to know some project recommendations that i could use as a demo.
At the moment I can only think of a system for a store using CRUD.
Any idea what other project examples I could use?
Thanks in advance and an apology if I didn’t know how to format the post.
I’d probably make small sample apps that work with different popular azure resources.
I’d start off with an asp.net core (/w docker support checked on) app. just do a simple CRUD controller for like any entity, I usually go with Person because they have easy properties (first name last name address etc)
integrate with azure table storage to store details. store something in blob storage (a picture maybe?).
then do something with azure sql. then cosmosdb.
figure out something that can be done asynchronously and make an azure function for it. have the function trigger from azure storage queue, and azure service bus queue. figure out a way to try out pub/sub on ASB as well.
deploy your asp.net core app to an azure app service.
make sure to store your secrets in a keyvault. learn how to have your application authenticate with azure so that it can access the keyvault to pull secrets (like a db connection string)


I’d try to get exposure to all of these, at least know the basics and at a high level what they’re capable of. if you’re still looking for more, I’d try doing something with Durable Functions or Azure Kubernetes Service.
most c# shops (in my experience) will be working with Azure, so having a good understanding and some practical experience here is a great asset.
C# devs
null reference exceptions

source