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

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -