Category Archives: C#

ASP.NET MVC C# Hello World!

This simple tutorial will guide you to create a small MVC application with CRUD features. This explains how easy we can use MVC Entity framework to develop our apps. Goal : We want to create an address with with 3 fields , Name, Email ID, Address. We should have the option to Create, View, Update… Read More »

OwnCloud Tweaks and tricks for C# Developers

What is owncloud Visit https://owncloud.com/ for more details . How to control OwnCloud management from C# Download c# Client library for CSHARP C# client library for ownCloud Sample c# Codes Below to create User Account, Reset password, Share Folder, Create Public URL Caveats : Even Though nuget packages are available to download I found that… Read More »

Creating Async Chained Tasks in C#

Scenario :  Want to design a c# controller with following feature. # User will submit a request and system update the database with a status immediately . # System will run some command line to sync source and destination folder which may take hours to complete. # Once the command line copy / sync process… Read More »