Part 1 – Why a Board Is Needed in BI Projects?

Business Intelligence projects are rarely linear. – Prof. Dr. Rowland Dax In general, BI projects consist of multiple components that need to be designed, created, and delivered simultaneously: data extraction, data modeling, DAX calculations, report design, data validation, and user testing, etc. Each of these streams depends on the other, and the process is mostly

Read More 

How to copy Settings in local.settings.json easily to Azure Function Deployment when using Visual Studio IDE (Not VSCode)

If you are lazy like me to read the documentation in detail you would probably not know how to add application settings (local settings) to Azure function App. And you’ll probably realize that once you deployed 🙂 Azure Functions are interesting when it comes to saving and consuming settings. Current suggested method may seem like

Read More 

Creating a Standard ASP.NET Core Web API Infrastructure with RepoDB as an ORM

Technologies/Tools Used Create Solution and the Web Project Create an empty .NET Core API Project: Setup Swagger as an API Interface: Right click the project and hit “Manage Nuget Packages” In “Nuget Explorer” window, Select “Browse” tab and write “swagger”. Install the library named “Swashbuckle.AspNetCore”. Copy and paste this code block into Startup.cs => ConfigureServices(…)

Read More 

ORM Trials

I am not a big fan of EF/Entity Framework. To be honest, mostly I hate EF. I have many valid reasons to hate it however I really don’t want this post to be the show of hatred against EF. Until today I was using my own Data Access Framework. It was not the best of

Read More