Dynamic Data
Im new to the system and after reading this topic www.sitefinity.com/.../dynamic-fields, I just wonder whether after the SaveChanges call, a new table is created or what happens to the database? Please advise.
Hi Thang,
After the query:
App.WorkWith()
.DynamicData()
.Type(
typeof
(NewsItem))
.Field()
.TryCreateNew(
"ResearcherName"
,
typeof
(
string
))
.SaveChanges(
true
);