Close

C# Programming Language, .NET Framework

C# is a general-purpose, multi-paradigm programming language developed by Microsoft in 2002. It is a statically typed, compiled language, meaning the code is converted into machine code before it is executed.

.NET is a software framework developed by Microsoft that provides a common language runtime (CLR) and a set of libraries that can be used to develop applications. The CLR is responsible for managing the execution of C# code and providing services such as garbage collection.

.NET AutoMapper Nedir?

dotNet Core MVC

.NET MVC ile bir proje yaptığımızda Model ve  View arasında alanları eşlemek sıkıcı ve hataya açık bir iş olabiliyor.  AutoMapper bu iş Için üretilmiştir.  Aslında automapper iki nesneyi birbirine eşleyen karmaşık koddan kurtulmak için oluşturulan basit bir kütüphanedir. Kendine has bir kullanımı vardır.  Automapper’ i kurmak için Nuget Packages üzerinde […]

Devamını Oku

Data Transfer Object (DTO)

Microsoft .NET Framework

dotNet MVC projelerinde, veri tablosundan veriyi aldınız ve ilgili modelle map oluşturdunuz.  Normal durumda bu alanları doğrudan kullanırsınız.  Bazı durumlarda örneğin ad, soyad gibi iki alanı birleştirip AD-SOYAD şeklinde bir alan olarak kullanmak isteyebilirsiniz.   Bu iş için DTO adı verilen bir ara object kullanıyoruz.  DTO’da tanımlayarak sonraki kullanımları basitleştirebilirsiniz. 

Devamını Oku

Most popular languages on GitHub, 2019

github

Most popular languages on GitHub as of October 25, 2019, counting only repos with at least 10000 stars. # language repos count 1 JavaScript 397 2 Python 115 3 Java 103 4 Go 78 5 C++ 53 6 TypeScript 46 7 HTML 36 8 C 33 9 Shell 32 10 […]

Devamını Oku

Entity Framework vs. Dapper

Entity Framework vs Dapper

Entity Framework (EF) and Dapper both are object-relational mappers that enable .NET developers to work with relational data using domain-specific objects. Dapper owns the title of King of Micro ORM in terms of performance. Entity Framework Advantages Disadvantages Dapper Advantages Disadvantages For the full documentation please visit official page https://entityframework.net/ef-vs-dapper

Devamını Oku

Entity Framework Tutorial

Entity Framework Core

I am suggesting this site for Entity Framework Learning  Entity Framework is an open-source object-relational mapping framework for ADO.NET. It was a part of .NET Framework, but since Entity Framework version 6 it is separated from .NET framework.  Learn Entity Framework using simple yet practical examples on EntityFrameworkTutorial.net for free. […]

Devamını Oku