Вставить с помощью Linq-to-SQL объект, определенный с помощью отражения - PullRequest
3 голосов
/ 22 сентября 2010

Я пытаюсь заполнить строку в таблице, учитывая список значений ключей

Используя 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>(); без удачи.Спасибо

1 Ответ

1 голос
/ 22 сентября 2010

Я обдумывал это

db.GetTable(rowType).InsertOnSubmit(row);
db.SubmitChanges();
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...