Thursday, June 26, 2014

Roslyn (Next Version of C# Compiler ) part 01

This article is about what is available in C# 6.0 with next version of compiler. You can have the binaries from roslyn.codeplex.com and use it. Here im going to demonstrate some key futures that useful in day to day programming .1. Indexed Members and Element InitializersThere is several versions of it. Here is example for assign collection when it initialize in the code, Ex : List<Ttype,Tvalue> Dictionary<string, string> sampleDemo...

Monday, June 23, 2014

Web service with DB interaction (Entity framework 6), Part 1

Lot of people have problems with database interaction with Web services. connection problems with databases , retrieving, inserting etc. In this post I will show you hoe to connect DB and manage connections efficiently with Web service.To archive this goal entity frame work is very helpful tool.Lets see how to use it.Here is my SQL server table that im going to use. Insted of SQL server You can use any Database type such as Oracle, Mysql etc.Lets...

Friday, June 20, 2014

Cross platform Development With Xamarin

Having a same App on all major platforms and all of them are shared a same  source code is dream. But today it is not. There is several tools to do that  here few of them,Xamarin PhoneGap Rho Mobile Appcelerator Widget Pad Whoop MoSync  Importance of Xamarin is ,Share code between platformsUsing .NET skillsC# LanguageLet developers create UI’s that are unique to each platform. Xamarin is cross platform development tool that created...