Posts

Showing posts from July, 2019

Preparation plan and resources for Azure AZ-203 Certification Exam for developers

Microsoft Certifications are one of the way to make added values to your resume,moreover it will give you more visibility in the technical community and knowledge for sure.Cloud technologies are the one of the huge  successful  product from the Microsoft. Azure certification exams are revised and renewed on last Mar 2019. Azure developer associate exam and azure solution architect are the two exams which is relevant for the Developers. Before those two exams known by : 70-532 ,and 70-533. But now, Azure is bringing new features and developing very fast ,they also changed exams it into AZ-203 -Azure developer AZ-300 -Azure solution architect. You can get all other  Azure exams list here . Here I thought of shearing the resources that I am used to prepare for the exam AZ-203. Who should take this exam ? If you are a developer in Microsoft technologies. If you want to become DevOps in Azure,or planning to take AZ-400 DevOps expert certificati...

Telerik c# MVC Grid customizing Paging with Custom sql query + Dapper

Image
Telerik Mvc Web framework has an option to customize the paging of the grid.In most of the cases we are leaned towards to use its default option of paging/filtering.But It actually take all the data and filter or page or sort on top the all content from the back end ,this is the performance breach . Here I am trying to describe the ways we can customize the Telerik    Mvc Paging without taking the bulk data. There are 3 steps to do. 1.Make the telerik grid settings for the customization 2.Get the total count of data in the initial request. 3.Apply custom filter queries to filter from the back end. 1 .Make the Telerik grid settings for the customization Here is  a sample code to set up the grid with custom paging : Here please note the Total we set after the ajax option.This value we need to get from the controller using Viewbag or any other data transfer methods to let the grid know the total. .EnableCustomBinding true. Set the data read option ...