In this article, I am going to do create Redis Server and SQL Server on Azure Platform and integrate them to .Net Core 3.1 Web API project. After that, I am going to dockerize the project dockerize the project and publish on Azure Cloud Platform.
The project will have five layers which are API, Business, Cache, Data Access, Entities but I will explain only how to create Redis and SQL Server on Azure Platform and integrate them with Net Core app, after that dockerizing and publishing on Azure Cloud Platform. …
In this article, I will talk about how to building-related tables in MSSQL on the .Net Core application with Entity Framework Core, which is a powerful ORM tool that I used it fondly for a while with the Code First approach.
I am going to explain “What is the ORM”, “What is the Entity Framework and its advangates”, “What is the Code First approach”, “How to build related tables with Entity Frame Core in .Net Core project in a sample application”.
ORM(Object Relational Mapping) is a technology that convert models to our database tables, properties to columns, objects to a…
In this article, I am going to explain what Redis is, its advantages, and how to integrate it into a Nodejs project with a simple application.
Redis is an in-memory data structure store, usable as a database (NoSQL), cache, and message broker. Redis stores data as “key-value” relationship. It stores data temporarily or permanently in RAM.
It will be a simple movie app and we are going to use “http://www.omdbapi.com” API’s data.
In a terminal window, we are writing to these…
Uzun zamandır Medium platformunda ilk içeriğimi paylaşmayı düşüyordum. Bunun için Türkçe kaynak olarak az bulunan bir konuyu seçmek istedim ve Nodejs projesinde GraphQL ile Prisma’nın nasıl entegre olup çalıştığını yazmaya karar verdim.
Bu yazıda ki takip edeceğim akış Prisma’dan bahsetmek ve GraphQL ile veritabanımız arasında nasıl bir yerde olduğunu anlatmak, avantajlarından bahsetmek ardından örnek bir projeyle sonlandırmak. O zaman hadi başlayalım!
Bu yazıdaki temel amacım GraphQL’i anlatmak olmadığı için temel bir iki cümle ile açıklayıp asıl konumuz olan Prismaya geçeceğim.
GraphQL basit anlamda veri çekme, sorgulama, ekleme, güncelleme gibi işlemleri yapabileceğimiz bir sorgulama teknolojisidir. Rest API’a kısayla en büyük avantajı…