visual studio 2010 - Where is my Entity Framework 5 Generated Database? -


i can't find database file anywhere. can hit database know there.

i used connection string:

<connectionstrings>     <add name ="testpocotimeentrycontext" connectionstring="data source=.\sqlexpress; integrated security = true;" providername="system.data.sqlclient" /> </connectionstrings> 

in code, if run line:

console.writeline(db.database.connection.database + " exists " + db.database.exists()); 

i output:

" exists true" 

i cannot understand why database there has no name , there no file it.

let me know if need provide further info. thanks!


Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -