1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
| [Table(Name="dbo.Journaux")]
public partial class Journaux : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private int _JournalID;
private string _Code;
private string _Libelle;
private string _NomDossier;
private System.Nullable<int> _Parent;
private EntitySet<Journaux> _Journaux2;
private EntityRef<Dossiers> _Dossiers;
private EntityRef<Journaux> _Journaux1;
#region Extensibility Method Definitions
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnJournalIDChanging(int value);
partial void OnJournalIDChanged();
partial void OnCodeChanging(string value);
partial void OnCodeChanged();
partial void OnLibelleChanging(string value);
partial void OnLibelleChanged();
partial void OnNomDossierChanging(string value);
partial void OnNomDossierChanged();
partial void OnParentChanging(System.Nullable<int> value);
partial void OnParentChanged();
#endregion
public Journaux()
{
this._Journaux2 = new EntitySet<Journaux>(new Action<Journaux>(this.attach_Journaux2), new Action<Journaux>(this.detach_Journaux2));
this._Dossiers = default(EntityRef<Dossiers>);
this._Journaux1 = default(EntityRef<Journaux>);
OnCreated();
}
[Column(Storage="_JournalID", AutoSync=AutoSync.OnInsert, DbType="Int NOT NULL IDENTITY", IsPrimaryKey=true, IsDbGenerated=true)]
public int JournalID
{
get
{
return this._JournalID;
}
set
{
if ((this._JournalID != value))
{
this.OnJournalIDChanging(value);
this.SendPropertyChanging();
this._JournalID = value;
this.SendPropertyChanged("JournalID");
this.OnJournalIDChanged();
}
}
}
[Column(Storage="_Code", DbType="VarChar(10) NOT NULL", CanBeNull=false)]
public string Code
{
get
{
return this._Code;
}
set
{
if ((this._Code != value))
{
this.OnCodeChanging(value);
this.SendPropertyChanging();
this._Code = value;
this.SendPropertyChanged("Code");
this.OnCodeChanged();
}
}
}
[Column(Storage="_Libelle", DbType="VarChar(MAX) NOT NULL", CanBeNull=false)]
public string Libelle
{
get
{
return this._Libelle;
}
set
{
if ((this._Libelle != value))
{
this.OnLibelleChanging(value);
this.SendPropertyChanging();
this._Libelle = value;
this.SendPropertyChanged("Libelle");
this.OnLibelleChanged();
}
}
}
[Column(Storage="_NomDossier", DbType="VarChar(10) NOT NULL", CanBeNull=false)]
public string NomDossier
{
get
{
return this._NomDossier;
}
set
{
if ((this._NomDossier != value))
{
if (this._Dossiers.HasLoadedOrAssignedValue)
{
throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException();
}
this.OnNomDossierChanging(value);
this.SendPropertyChanging();
this._NomDossier = value;
this.SendPropertyChanged("NomDossier");
this.OnNomDossierChanged();
}
}
}
[Column(Storage="_Parent", DbType="Int")]
public System.Nullable<int> Parent
{
get
{
return this._Parent;
}
set
{
if ((this._Parent != value))
{
if (this._Journaux1.HasLoadedOrAssignedValue)
{
throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException();
}
this.OnParentChanging(value);
this.SendPropertyChanging();
this._Parent = value;
this.SendPropertyChanged("Parent");
this.OnParentChanged();
}
}
}
[Association(Name="Journaux_Journaux", Storage="_Journaux2", ThisKey="JournalID", OtherKey="Parent")]
public EntitySet<Journaux> Journaux2
{
get
{
return this._Journaux2;
}
set
{
this._Journaux2.Assign(value);
}
}
[Association(Name="Dossiers_Journaux", Storage="_Dossiers", ThisKey="NomDossier", OtherKey="NomDossier", IsForeignKey=true, DeleteOnNull=true, DeleteRule="CASCADE")]
public Dossiers Dossiers
{
get
{
return this._Dossiers.Entity;
}
set
{
Dossiers previousValue = this._Dossiers.Entity;
if (((previousValue != value)
|| (this._Dossiers.HasLoadedOrAssignedValue == false)))
{
this.SendPropertyChanging();
if ((previousValue != null))
{
this._Dossiers.Entity = null;
previousValue.Journaux.Remove(this);
}
this._Dossiers.Entity = value;
if ((value != null))
{
value.Journaux.Add(this);
this._NomDossier = value.NomDossier;
}
else
{
this._NomDossier = default(string);
}
this.SendPropertyChanged("Dossiers");
}
}
}
[Association(Name="Journaux_Journaux", Storage="_Journaux1", ThisKey="Parent", OtherKey="JournalID", IsForeignKey=true)]
public Journaux Journaux1
{
get
{
return this._Journaux1.Entity;
}
set
{
Journaux previousValue = this._Journaux1.Entity;
if (((previousValue != value)
|| (this._Journaux1.HasLoadedOrAssignedValue == false)))
{
this.SendPropertyChanging();
if ((previousValue != null))
{
this._Journaux1.Entity = null;
previousValue.Journaux2.Remove(this);
}
this._Journaux1.Entity = value;
if ((value != null))
{
value.Journaux2.Add(this);
this._Parent = value.JournalID;
}
else
{
this._Parent = default(Nullable<int>);
}
this.SendPropertyChanged("Journaux1");
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void SendPropertyChanging()
{
if ((this.PropertyChanging != null))
{
this.PropertyChanging(this, emptyChangingEventArgs);
}
}
protected virtual void SendPropertyChanged(String propertyName)
{
if ((this.PropertyChanged != null))
{
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
private void attach_Journaux2(Journaux entity)
{
this.SendPropertyChanging();
entity.Journaux1 = this;
}
private void detach_Journaux2(Journaux entity)
{
this.SendPropertyChanging();
entity.Journaux1 = null;
}
} |