var CrmServices = dbcon.GetService();
Entity VPNEntity = new Entity("lead");
ColumnSet sa = new ColumnSet();
VPNEntity["firstname"] = name.Text;
VPNEntity["emailaddress1"] = email.Text;
VPNEntity["mobilephone"] = mobile.Text;
// Response.Write(OUT);
var crm = CrmServices.Create(VPNEntity);
After Creating Record in CRM
I want to PULL one SIngle Record which is already increment
Entity vpn = CrmServices.Retrieve("lead", ?(and what i write this and what come in GUID), ?(what i write this)Column Set) );