コンテキスト SQLServer 2012、Visual Studio 2010。
これが可能かどうかはわかりませんが、返されたテーブルに列を動的に生成しようとしています。
List<object> columnsInfo = new List<object>();
foreach (string entry in poodle.getKs())
{
columnsInfo.Add( new SqlMetaData(entry, SqlDbType.Text));
}
poodle.getKs() は、文字列の配列で列名のリストを提供しています。
これは私が混乱しているところです。オブジェクトのリストを SqlMetaData の配列に変換し、それをレコード変数に割り当てるために SqlDataRecord にキャストしようとしています。
SqlDataRecord record = (SqlDataRecord)columnsInfo.ToArray<SqlMetaData>();
ビルドで発生するエラーは
Instance argument: cannot convert from 'System.Collections.Generic.List<object>' to 'System.Collections.Generic.IEnumerable<Microsoft.SqlServer.Server.SqlMetaData>'
と
'System.Collections.Generic.List<object>' does not contain a definition for 'ToArray' and the best extension method overload 'System.Linq.Enumerable.ToArray<TSource>(System.Collections.Generic.IEnumerable<TSource>)' has some invalid arguments
ただし、これは私の C# スキルと理解力が失敗するポイントです。私は何を間違っていますか?