asp.net mvc model - my own database
        Posted  
        
            by progtick
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by progtick
        
        
        
        Published on 2009-09-11T00:19:14Z
        Indexed on 
            2010/04/19
            7:03 UTC
        
        
        Read the original article
        Hit count: 239
        
database
The tutorials I have come across usually let you create a dababase from scratch creating a .mdf file or something and so on. However, what if I already have a SQL Server Express set up with the needed database? How do I tell my model to use that database?
Right now, all my model contains is basically some classes that execute stored procedure on my own database and return manupulated data. Should I leave it as it is? What are the benefits of going through the full-fledged model approach that tutorials demonstrate?
© Stack Overflow or respective owner