Mirche Toshevski's Blog
-
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 of Dapper writen by Eric Coffman. This extension contains 8 helper methods. Get(id) - gets one record based on the...
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 to the database: public IDbConnection Db => new SqlConnection(_options.DefaultConnection); DefaultConnection is our default connectionString. We will use Db for all...
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 mapper written in .NET and titled by many Number 1 Micro ORM. In terms of speed it is almost as...
Read More -
Jul 27, 2017
Jekyll Tutorial - Part 1: Install Jekyll on Windows in few easy steps
First install Chocolatey Open PowerShell with admin privileges Check execution policy Type Get-ExecutionPolicy if it returns Restricted, type Set-ExecutionPolicy AllSigned Install Chocolatey Type iex ((New-Object System.Net.WebClient).DownloadString(‘https://chocolatey.org/install.ps1’)) Restart PowerShell with admin privileges Install Ruby. Type choco install ruby -y Restart PowerShell again Install Bundler. Type gem install bundler Install Jekyll. Type...
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 you language sheet (similar to Excel) where every column represent one language. We will use this tool to manage our...
Read More