I am using database first approach ,when i create **Module1 **that have my database structure ,whene I need to create my database againe by using this code
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim createdb As New Model1
createdb.Database.Create()
End Sub
its create databse and tables corectly,but Views in my organal database converts th tables. Can anyone help me to avoid that
I want to reflect my database with all its structures "tables,vwies,functions,,, and so on. with using vb.net EF