Я пытаюсь заполнить строку в таблице, учитывая список значений ключей
Используя DataContext.Mapping Я могу найти правильную таблицу (с учетом имени таблицы) и создать строку.
// Look up the table
MetaTable matchedTable = null;
foreach (MetaTable tableMetaData in db.Mapping.GetTables())
{
if (table.Equals(tableMetaData.TableName))
{
matchedTable = tableMetaData;
break;
}
}
if (matchedTable == null)
{
throw new Exception("Invalid table name specified");
}
Затем я перебираю свойства строки и заполняю значения.
// Iterate through the dictionary and try to match up the keys with column names
foreach (KeyValuePair<string, string> listItem in list)
{
PropertyInfo propertyInfo = rowType.GetProperty(listItem.Key);
if (propertyInfo == null)
{
throw new Exception("Invalid column name specified");
}
// Set the value on the object
try
{
propertyInfo.SetValue(row, Convert.ChangeType(listItem.Value, propertyInfo.PropertyType), null);
}
catch
{
throw new Exception("Value specified cannot be converted to database type");
}
}
Теперь мне нужно вставить этот объект строки обратно в БД.Я играл с db.GetTable<rowType>();
без удачи.Спасибо