Senin, 26 Agustus 2013

ASP.Net, C#, SQL Server Information

Posted on 05.08 by andi avdy

ASP.Net, C#, SQL Server Information

Link to ASP.Net, C#, SQL, JQuery, Sharepoint

SQL Server Performance Tuning and Query Optimization Videos

Posted: 25 Aug 2013 04:50 PM PDT

If you are like me, who don't get much chance to get your hands dirty in fine tuning sql server queries, then you must watch this videos. I am really thankful to this guy, who has posted such a useful videos. http://www.youtube.com/playlist?list=PL2900t3sPCl1MZi88lYsRLUcSled8wAMU Frankly speaking their is lot of materials out their on this topic and I always avoid learning because of that.  

Generate C# Class from JSON File or URL

Posted: 25 Aug 2013 09:08 AM PDT

I have came across a useful site which will be helpful in generating C# Class from JSON File or URL. This will be very useful when you are using JsonConvert.DeserializeObject Method. http://json2csharp.com/

Generate JSON File from database data using c#

Posted: 25 Aug 2013 07:56 AM PDT

Following code will help you to generate JSON file from database table. //Get records from database var products = db.Products.ToList(); //Generate JSON from database data using (StringWriter writer = new StringWriter()) {     // Json.Write sends a Json-encoded string to the writer.     System.Web.Helpers.Json.Write(products, writer);         // When ready, you can send the writer     // output

No Response to "ASP.Net, C#, SQL Server Information"

Leave A Reply