我想讓我的對象進入一個DataTable,將它用作DataGrid的ItemsSource。 foreach (Translate t in item.Translations)
{
if (rowArray[t.IdSprache] == null)
{
rowArray[t.IdSprache] = t; //here I add the Transla
我想要query從DataTable獲得特定值。 可以說我有一個DataTable其中包含2列: ID ITEM_NAME 現在我想做的是像我將與MySQL做到這一點:SELECT * FROM "DataTable" WHERE item_name = 'MyItemName' 然後獲取屬於該'item_name'的ID ... int blah;
while (MyReader.Read()