Skip to main content

Posts

Showing posts from 2017

How to partition or split DataTable in C#?

Today we will discuss how we can divide or split a very large data table into fixed size of chunks? Scenario: Suppose there is a data table which has 1000 Rows. When you perform for each loop on data table and read each row at that time it will take too much time. If we devide 1000 Rows datatable into 10 fixed sizes (e.g. 100 Rows) datatable, It will take less time. Let's check how to achieve it. Here is a code. private static List<DataTable> SplitTable(DataTable originalTable, int batchSize) { List<DataTable> tables = new List<DataTable>(); int i = 0; int j = 1; DataTable newDt = originalTable.Clone(); newDt.TableName = "Table_" + j; newDt.Clear(); foreach (DataRow row in originalTable.Rows) { DataRow newRow = newDt.NewRow(); newRow.ItemArray = row.ItemArray; newDt.Rows.Add(newRow); i++; if (i == batchSize) ...

How to Publish your asp.net web application ?

Today we will discuss how you can publish your asp.net web application. Please follow below step to achieve it. Step 1:  Right Click on your project then click on Publish. Below screen will open. Step 2: Click On Custom. Below Screen will Open. Give Any suitable profile name. Example : Give name "Local1" Click On OK Click Next. Below screen will open. Step 3: From dropdown select Publish Method . Select File System . When you select "File System" as Publishing method , it will ask for a Physical Path to Publish a web site. Ex: Create a new folder in your C drive named " Demo ". Set C:\Demo as Physical Publish folder Path . Click Next. Below screen will open. Step 4: Click on Publish . Below screen will open. Step 5: Your Site is successfully Published on C:\Demo Folder . For More Updates stay connected On :  Learn2All Facebook Page Amazing Concepts in Video :   Video On YouTube