私は、言語として c# を使用し、ms sql サーバー エクスプレスを使用して、asp.net でプロジェクトを行っています。私はこれまでに4つのモデルクラスを持っています:
初め:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace WerIstWo.Models
{
public class Benutzer
{
//Eigenschaften
private int benutzerid, gruppenid, urlaubstageinsgesamt, urlaubstagegenommen, urlaubstagerest;
private string titel, bezeichnung, vorname, nachname, geburtsdatum, geburtsort,
nationalitaet, strasse, hausnummer, plz, ort, land, mobil, fax, festnetz, email,
homepage, benutzerart, status, benutzername, passwort;
List<Gruppe> gruppen;
//Properties
public int BenutzerID
{
get { return this.benutzerid; }
set { this.benutzerid = value; }
}
public int GruppenID
{
get { return this.gruppenid; }
set { this.gruppenid = value; }
}
public int UrlaubstageInsgesamt
{
get { return this.urlaubstageinsgesamt; }
set { this.urlaubstageinsgesamt = value; }
}
public int UrlaubstageGenommen
{
get { return this.urlaubstagegenommen; }
set { this.urlaubstagegenommen = value; }
}
public int UrlaubstageRest
{
get { return this.urlaubstagerest; }
set { this.urlaubstagerest = value; }
}
public string Titel
{
get { return this.titel; }
set { this.titel = value; }
}
public string Bezeichnung
{
get { return this.bezeichnung; }
set { this.bezeichnung = value; }
}
public string Vorname
{
get { return this.vorname; }
set { this.vorname = value; }
}
public string Nachname
{
get { return this.nachname; }
set { this.nachname = value; }
}
public string Geburtsdatum
{
get { return this.geburtsdatum; }
set { this.geburtsdatum = value; }
}
public string Geburtsort
{
get { return this.geburtsort; }
set { this.geburtsort = value; }
}
public string Nationalitaet
{
get { return this.nationalitaet; }
set { this.nationalitaet = value; }
}
public string Strasse
{
get { return this.strasse; }
set { this.strasse = value; }
}
public string Hausnummer
{
get { return this.hausnummer; }
set { this.hausnummer = value; }
}
public string PLZ
{
get { return this.plz; }
set { this.plz = value; }
}
public string Ort
{
get { return this.ort; }
set { this.ort = value; }
}
public string Land
{
get { return this.land; }
set { this.land = value; }
}
public string Mobil
{
get { return this.mobil; }
set { this.mobil = value; }
}
public string Fax
{
get { return this.fax; }
set { this.fax = value; }
}
public string Festnetz
{
get { return this.festnetz; }
set { this.festnetz = value; }
}
public string Email
{
get { return this.email; }
set { this.email = value; }
}
public string HomePage
{
get { return this.homepage; }
set { this.homepage = value; }
}
public string Benutzerart
{
get { return this.benutzerart; }
set { this.benutzerart = value; }
}
public string Status
{
get { return this.status; }
set { this.status = value; }
}
public string Benutzername
{
get { return this.benutzername; }
set { this.benutzername = value; }
}
public string Passwort
{
get { return this.passwort; }
set { this.passwort = value; }
}
//Konstruktor
public Benutzer()
{
}
}
}
2番:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace WerIstWo.Models
{
public class Gruppe
{
//Eigenschaften
private int gruppenid;
private string bezeichnung;
private int anzahlmitglieder;
//Properties
public int GruppenID
{
get { return this.gruppenid; }
set { this.gruppenid = value; }
}
public string Bezeichnung
{
get { return this.bezeichnung; }
set { this.bezeichnung = value; }
}
public int AnzahlMitglieder
{
get { return this.anzahlmitglieder; }
set { this.anzahlmitglieder = value; }
}
//Konstruktor
public Gruppe()
{
}
}
}
三番:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace WerIstWo.Models
{
public class Kalender
{
//Eigenschaften
private int kalenderid;
private int gruppenid;
private int benutzerid;
private string art;
//Properties
public int KalenderID
{
get { return this.kalenderid; }
set { this.kalenderid = value; }
}
public int GruppenID
{
get { return this.gruppenid; }
set { this.kalenderid = value; }
}
public int BenutzerID
{
get { return this.benutzerid; }
set { this.benutzerid = value; }
}
public string Art
{
get { return this.art; }
set { this.art = value; }
}
//Konstruktor
public Kalender()
{
}
}
}
そして4番目:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace WerIstWo.Models
{
public class KalenderEintrag
{
//Eigenschaften
private int kalendereintragid;
private int kalenderid;
private string art;
private string datum;
private string status;
private string kommentar;
//Properties
public int KalendereintragID
{
get { return this.kalendereintragid; }
set { this.kalendereintragid = value; }
}
public int KalenderID
{
get { return this.kalenderid; }
set { this.kalenderid = value; }
}
public string Art
{
get { return this.art; }
set { this.art = value; }
}
public string Datum
{
get { return this.datum; }
set { this.datum = value; }
}
public string Status
{
get { return this.status; }
set { this.status = value; }
}
public string Kommentar
{
get { return this.kommentar; }
set { this.kommentar = value; }
}
//Konstruktor
public KalenderEintrag()
{
}
}
}
私はこれらのチュートリアルを読んで、これまでに取得しました:
http://webproject.scottgu.com/csharp/Data/Data.aspx
http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/creating-an-entity-framework -asp-net-mvc-application のデータモデル
私が理解していることから、モデルクラスからデータベースを生成するには4つのステップが必要です:
モデル
を作成するコンテキストクラス
を作成するイニシャライザを作成
するアプリケーションを実行する -> dbが生成される
しかし、イニシャライザなしで、またはコンテキスト クラスなしでそれを行うことは可能ですか? 私は、4つのモデルクラスのみに基づいてデータベースを生成するだけでよいと考えましたか? または、コンテキストと初期化クラスが必要ですか?
ありがとう!