I make & use a datatable with a column through
test_dt.Columns.Add("list_paragraphs", typeof(List<string>));
In this way, I just need 1 row to save List<string>
object which has many string items.
Is there a way to do this for Microsoft SQL Server 2005?
If available, the size of column is limited like 4000 (varchar
)? Or enough like datatable?
I've searched for hours but there are only some threads talking about inserting a list with a loop row by row.