C#
- C#
- Categories
-
Oct 17, 2018
Creating simple OWIN pipeline with Nancy
Intro OWIN (Open Web Interface for .NET) is a standard for an interface between .NET Web applications and Web servers. Nancy is lightweight framework for building HTTP based services on...
Read More -
Mar 17, 2018
LINQ Queries - 1
Intro LINQ is query language for C# and VB introduced in .NET 3.5 and VS 2008. LINQ simplifies querying by offering one unified language to query different types of data...
Read More -
Feb 7, 2018
Execute F# code in C# Program
Intro Functional programming is getting more and more attention lately, mostly because GPU’s and multi-core processors all use parallel execution for performance and the fact that functional languages encourage the...
Read More -
Dec 2, 2017
ASP.NET Core 2.0: Identity in Data Layer
When you use repository pattern you want your DB operations to be in Data Layer, but when you create ASP.NET Core site with Individual User Accounts, Visual Studio automatically creates...
Read More -
Aug 24, 2017
Create private NuGet Server
NuGet is the package manager for .NET, and NuGet Gallery is the place where most of the wide used packages rest and are publicly available. If you want to make...
Read More -
Aug 9, 2017
Dapper Tutorial - Part 3: Simple CRUD
Dapper Tutorial - Part 1: Dapper Intro and Installation Dapper Tutorial - Part 2: Dapper Queries Dapper Tutorial - Part 3: Simple CRUD Intro SimpleCRUD is class library and extension...
Read More -
Aug 8, 2017
Dapper Tutorial - Part 2: Dapper Queries
Dapper Tutorial - Part 1: Dapper Intro and Installation Dapper Tutorial - Part 2: Dapper Queries Dapper Tutorial - Part 3: Simple CRUD Setup First we need to create connection...
Read More -
Aug 7, 2017
Dapper Tutorial - Part 1: Dapper Intro and Installation
Dapper Tutorial - Part 1: Dapper Intro and Installation Dapper Tutorial - Part 2: Dapper Queries Dapper Tutorial - Part 3: Simple CRUD Intro to Dapper Dapper is simple object...
Read More -
Jun 3, 2017
Localisation in ASP.NET MVC
Localisation is a process of customizing our project to respond to different culture and locale. First of all there is a great Visual Studio tool called ResXManager. This tool gives...
Read More