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

Posts tagged with "backend-development"

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
Sending Email To Gmail SMTP Code with ASP.NET Core MVC

Sending Email To Gmail SMTP Code with ASP.NET Core MVC

11 August 20222 min readWeb Programming

We use the email sending process frequently in any web application. Sending mail with ASP.NET Core MVC is really simple. What we need to do is add class to Models folder and add controller to our controllers folder.

#ASP.NET Core#Email Sending#Gmail SMTP+3 more
C Sharp Entity Framework Data Insert Deletion Update Operations

C Sharp Entity Framework Data Insert Deletion Update Operations

30 January 20223 min readSoftware

Entity Framework is an object-relational mapper (O/RM) that enables .NET developers to work with a database using .NET objects. It eliminates the need for most of the data-access code that developers usually need to write...

#Entity Framework#C##Database Operations+3 more
Symfony Database Operations

Symfony Database Operations

16 January 20221 min readWeb Programming

There are many methods of capturing data. I'll convey what I know. For example we created a table called tal_news When writing the table name in Symfony, we write the first letters uppercase, make the table name TalNews (Capital letters must come after the first letter and underscore) The simplest way is to pull all the data...

#Symfony#PHP#Database Operations+3 more