May 29, 2007
@ 10:25 PM

Senaryo gereği bir DataTable'dan başka bir DataTable'a DataRow eklemek istediğimizde :

{
DataTable _sourceDataTable = _xDataSet.Tables[0];
DataTable _destinationDataTable = new DataTable();

foreach
(DataRow row in _sourceDataTable.Rows)
{
    if(row["col"] == "aranan_değer")
    {
        _destinationDataTable.Rows.Add(row);
    }
}

gibi bir kod işimizi görür gibi düşünsek de " This row already belongs to another table " hatası ile karşılaşırız. Çözüm, önce DataTable nesnesinin Clone() metodu ile kopyalamak istediğimiz diğer DataTable'i oluşturmak arkasından ImportRow() metodu ile kaynak DataTable'dan hedef DataTable'a isteniler DataRow'u eklemek.

{
DataTable _sourceDataTable = _xDataSet.Tables[0];
DataTable _destinationDataTable = new DataTable();
 
_destinationDataTable= _sourceDataTable.Clone();

foreach(DataRow row in _sourceDataTable.Rows)
{
     if(row["col"] == "aranan_değer")
    {
         _destinationDataTable.ImportRow(row);
    }
}


 
Categories:

Friday, March 13, 2009 10:41:03 AM (GTB Standard Time, UTC+02:00)
Teşekkürler. İşime yaradı.
Friday, November 06, 2009 3:55:08 AM (GTB Standard Time, UTC+02:00)
Do you want to buy some sheepskin boots, please come to www.findugg.com.Full range of UGG boots for Men and Women to buy online. Fast and free shipping to worldwide, competitive price, high quality, and efficient service.

Read more:http://www.findugg.com
Tuesday, January 05, 2010 5:07:49 AM (GTB Standard Time, UTC+02:00)
<a href="http://shop.brandsuper.com/nike-air-max-shoes-nike-air-max-360-shoes-c-54_65.html">Air Max 360</a>
<a href="http://shop.brandsuper.com/nike-basketball-shoes-kobe-bryant-shoes-c-238_245.html">kobe bryant shoes</a>
<a href="http://shop.brandsuper.com/nike-basketball-shoes-kobe-bryant-shoes-c-238_245.html?page=12&sort=20a">Nike Kobe 4</a>
<a href="http://shop.brandsuper.com/nike-basketball-shoes-c-238.html">Nike Kobe 5</a>
<a href="http://shop.brandsuper.com/nike-air-max-shoes-nike-air-max-90-shoes-c-54_55.html">Air Max 90</a>
<a href="http://shop.brandsuper.com/nike-air-max-shoes-nike-air-max-1-shoes-c-54_80.html">Air Max 1</a>
<a href="http://shop.brandsuper.com/nike-basketball-shoes-c-238.html">nike basketball shoes</a>
Tuesday, January 05, 2010 5:12:10 AM (GTB Standard Time, UTC+02:00)
<a href="http://www.vip-boots.com/">Timberland for kids</a>
<a href="http://www.vip-boots.com/">Mens timberland boots</a>
<a href="http://www.vip-boots.com/">Womens timberland boots</a>
<a href="http://www.vip-boots.com/">Cheap timberland boots</a>
<a href="http://www.vip-boots.com/">Timberland winter boots</a>
<a href="http://www.vip-boots.com/">Timberland work boots</a>
Tuesday, January 05, 2010 5:17:25 AM (GTB Standard Time, UTC+02:00)
<a href="http://www.kissnfl.com/nfl-jerseys-c-631.html"><strong>authentic football jerseys</strong></a>
<a href="http://www.kissnfl.com"><strong>authentic jerseys</strong></a>
<a href="http://www.kissnfl.com/nfl-jerseys-c-631.html"><strong>authentic nfl jerseys</strong></a>
<a href="http://www.kissnfl.com/nhl-jerseys-c-659.html"><strong>authentic nhl jerseys</strong></a>
<a href="http://www.kissnfl.com/nfl-jerseys-c-631.html"><strong>buy nfl jerseys</strong></a>
<a href="http://www.kissnfl.com cheap authentic nfl jerseys</strong></a>
Tuesday, January 05, 2010 5:24:11 AM (GTB Standard Time, UTC+02:00)
<a href="http://www.uggood.com/">uggaustralia</a>
<a href="http://www.uggood.com/womens-ugg-classic-mini-5854-black-boots-p-1198.html">ugg mini black</a>
<a href="http://www.uggood.com/">discount Ugg</a>
<a href="http://www.uggood.com/ugg-classic-mini-boots-c-6.html">ugg mini</a>
<a href="http://www.uggood.com/">cheap ugg boots</a>
<a href="http://www.uggood.com/ugg-classic-mini-boots-c-6.html">ugg classic mini boots</a>
<a href="http://www.uggood.com/ugg-classic-mini-boots-c-6.html">mini uggs</a>
<a href="http://www.uggood.com/">ugg shoes</a>
<a href="http://www.uggood.com/">cheap ugg boots</a>
Tuesday, January 05, 2010 5:29:00 AM (GTB Standard Time, UTC+02:00)
<a href="http://www.watchesfield.com/ugg-クラシックトール-c-65.html">UGG クラシックトール</a>
<a href="http://www.watchesfield.com/ugg-クラシックショート-c-67.html">UGG Classic Short</a>
<a href="http://www.watchesfield.com/ugg-クラシックショート-c-67.html">UGG クラシックショート</a>
<a href="http://www.watchesfield.com/ugg-クラシックキャディ-c-66.html">UGG Classic Cardy</a>
<a href="http://www.watchesfield.com/ugg-クラシックキャディ-c-66.html">UGGクラシックキャディ</a>
<a href="http://www.watchesfield.com/ugg-クラシックキャディ-c-66.html">UGG ニットブーツ</a>
Name
E-mail
Home page

Comment (HTML not allowed)  

Enter the code shown (prevents robots):

Live Comment Preview