I was running across performance issues while saving large amount of data(around 10000 rows) to the database using EF in an MVC application for my project. Ef
Date Friday, November 29, 2013 Time Description 10.00 am to 12.00 pm Control structure in c# Learning : For Loops Why is this important to learn about? Control structures are one of the most fundamental concepts in any programming language you will come across. If you want to know C#, and if you want to learn to program with any language, you must have a firm grip on the control structures of the language. Definitions of terms used . Iteration – This is the act of repeating something (that ‘something’ being code statements in the programming context). Conditional – A conditional action is said to be one that is only performed if a certain condition is true. For Loops For loops allow us to specify the number of times to repeat a block of code. It is best demonstrated with an example: for (int i = 1; i <= 5; i++) { Console...
Comments
Post a Comment