Onur Taşkıran LogoOnur Taskiran's Personal BlogOnur Taskiran Blog
HomeAboutProjectsServicesContact
HomeAboutProjectsServicesContact
Onur Taşkıran LogoOnur Taskiran's Personal BlogOnur Taskiran Blog
HomeAboutProjectsServicesContact
HomeAboutProjectsServicesContact

Web Programming Posts

JavaScript Array Reduce

JavaScript Array Reduce

06 December 20222 min readWeb Programming

It is used to reduce the array to a single value and does not change the original array. We can do everything we do with map, filter, find with this structure. The easiest example to understand is to return the sum of all elements in an array with reduce. First, let's find the sum of the elements...

#JavaScript#Array Methods#reduce Function+3 more
JavaScript Array map

JavaScript Array map

05 December 20222 min readWeb Programming

The map function processes the elements of the array or object one by one and returns them. So it's doing the conversion. We use it a lot when developing applications. With map, we change something and assign it to something new without breaking the existing structure.

#JavaScript#Array Methods#map Function+3 more
Creating URL slugs in Javascript

Creating URL slugs in Javascript

25 September 20224 min readWeb Programming

You can prepare your url for SEO by using javascript in making slug url. I am saving the url I created to my database with `<input type = "text">` Add two inputs. set the id value to 'one' and 'two' ... Don't forget to add jquery.min.js library

#JavaScript#URL Slugs#SEO+3 more
Adding Entity Framework Migration and Reading Data From Database in Api

Adding Entity Framework Migration and Reading Data From Database in Api

20 September 20223 min readWeb Programming

Hi how are you? I continue from where we left off in the previous post. what we'll do is We will add Entity Framework migration and update the database then we will read the data from the...

#Entity Framework#ASP.NET Core#.NET+3 more
Setting up Entity Framework and Adding a Connection String

Setting up Entity Framework and Adding a Connection String

18 September 20223 min readWeb Programming

Hello we created a web api project with asp.net core in the previous post. Now We'll Install Entity Framework and Add a Connection String. I'll use SQLite as the database. And what we want to do is install this version of Microsoft entity framework core. I'm creating a new class called store context and I have to derive it from dbcontext object.

#ASP.NET Core#Entity Framework#Connection String+4 more
Creating Web Api Project With Asp.NET Core

Creating Web Api Project With Asp.NET Core

17 September 20223 min readWeb Programming

Let's create our project from powershell screen with dotnet cli commands. I click Start, type PowerShell, and then click Windows PowerShell. First of all, I see that my file is empty with the ls command. I am creating my onurnet folder with the mkdir onurnet command and then I go into my file with the cd onurnet command.

#ASP.NET Core#Web API#.NET+3 more
Previous1...5678Next