vb.net with Database
in java we have this name space "javax.persistence". this namespace allows you to create a data base when you running your application with no necessary to open sqlserver and create a database and table in it it created automatically开发者_如何学编程. is there a name Space in vb.net works the same as "javax.persistence" or not? if yes please write a sample of code as an example to be more specific? thx at all
Have you considered Code First using the Entity Framework? It does require a SQL server but the schema design is driven from your domain model. Scott Gu has a great introduction here
精彩评论