Around and About .NET World

Il blog di Marco Minerva
posts - 1671, comments - 2232, trackbacks - 2135

My Links

News

Contattami su Live Messenger:


MCTS: Windows, Web, Distributed Applications & SQL Server

MCPD: Enterprise Applications

Tag Cloud

Archives

Post Categories

Links

Linq & SQL: la creazione di un database

Quando si crea un DAL utilizzando SQLMetal oppure il LINQ to SQL Designer, la classe prodotta contiene anche tutte le informazioni sullo schema del database. Grazie ad esse e ai metodi esposti dalla classe DataContext, è sufficiente invocare un paio di metodi per verificare l'esistenza del database e ricrearlo con la sua struttura originale qualora non sia presente sul server:

 

using (DatabaseDataContext db = new DatabaseDataContext()) { if (!db.DatabaseExists()) db.CreateDatabase(); }

 

Questo codice si rivela utile, ad esempio, durante la prima esecuzione di un programma, per creare la base di dati che sarà poi utilizzata dal software.

Print | posted on martedì 1 maggio 2007 17:22 | Filed Under [ Orcas & .NET 3.5 LINQ ]

Comments have been closed on this topic.

Powered by:
Powered By Subtext Powered By ASP.NET