我有一张非常简单的桌子 1:代码 - int 2:名称字符串
并使用EntityFramework
Dim dbContext As New MyEntities
Dim myCategory As New Category
myCategory .code = txtCategoryCode.Text
myCategory .Name = txtCategoryName.Text
dbContext.AddToCategory(myCategory )
dbContext.SaveChanges()
没有错误,但它没有数据库中的数据!!!
答案 0 :(得分:0)
而不是
dbContext.AddToCategory(myCategory)
试
dbContext.Category.Add(myCategory)
或者如果它不起作用,请尝试
dbContext.Categories.Add(myCategory)