- Timestamp:
- 01/20/12 15:02:06 (13 years ago)
- Location:
- branches/OKB (trunk integration)/HeuristicLab.Services.OKB.DataAccess/3.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OKB (trunk integration)/HeuristicLab.Services.OKB.DataAccess/3.3/OKB.dbml
r7384 r7385 110 110 <Column Name="AlgorithmId" Type="System.Int64" DbType="BigInt NOT NULL" CanBeNull="false" /> 111 111 <Column Name="ProblemId" Type="System.Int64" DbType="BigInt NOT NULL" CanBeNull="false" /> 112 <Column Name="RandomSeed" Type="System.Int32" DbType="Int NOT NULL" CanBeNull="false" />113 112 <Column Name="CreatedDate" Type="System.DateTime" DbType="DateTime2 NOT NULL" CanBeNull="false" /> 114 113 <Column Name="UserId" Type="System.Guid" DbType="UniqueIdentifier NOT NULL" CanBeNull="false" /> -
branches/OKB (trunk integration)/HeuristicLab.Services.OKB.DataAccess/3.3/OKB.dbml.layout
r5534 r7385 133 133 </nodes> 134 134 </associationConnector> 135 <classShape Id="65934fe9-4206-4d20-971b-1afacf645311" absoluteBounds="5.75, 7.25, 2, 2.1554996744791666">135 <classShape Id="65934fe9-4206-4d20-971b-1afacf645311" absoluteBounds="5.75, 7.25, 2, 1.9631982421875005"> 136 136 <DataClassMoniker Name="/OKBDataContext/Run" /> 137 137 <nestedChildShapes> 138 <elementListCompartment Id="14f0104d-03c2-4aec-9a4d-faeaaa1d8947" absoluteBounds="5.7650000000000006, 7.7100000000000009, 1.9700000000000002, 1. 5954996744791665" name="DataPropertiesCompartment" titleTextColor="Black" itemTextColor="Black" />139 </nestedChildShapes> 140 </classShape> 141 <associationConnector edgePoints="[(3.2 7917873426126 : 2.65549967447917); (3.27917873426126 : 8.32774983723958); (5.75 : 8.32774983723958)]" fixedFrom="NotFixed" fixedTo="NotFixed">138 <elementListCompartment Id="14f0104d-03c2-4aec-9a4d-faeaaa1d8947" absoluteBounds="5.7650000000000006, 7.7100000000000009, 1.9700000000000002, 1.4031982421875" name="DataPropertiesCompartment" titleTextColor="Black" itemTextColor="Black" /> 139 </nestedChildShapes> 140 </classShape> 141 <associationConnector edgePoints="[(3.24167093356531 : 2.65549967447917); (3.24167093356531 : 8.23159912109375); (5.75 : 8.23159912109375)]" fixedFrom="Algorithm" fixedTo="Algorithm"> 142 142 <AssociationMoniker Name="/OKBDataContext/Algorithm/Algorithm_Run" /> 143 143 <nodes> … … 146 146 </nodes> 147 147 </associationConnector> 148 <associationConnector edgePoints="[(12.7 137905014838 : 2.65549967447917); (12.7137905014838 : 8.32774983723958); (8.13243692318721 : 8.32774983723958 : JumpStart); (7.96577025652055 : 8.32774983723958 : JumpEnd); (7.75 : 8.32774983723958)]" fixedFrom="NotFixed" fixedTo="NotFixed">148 <associationConnector edgePoints="[(12.7565713753709 : 2.65549967447917); (12.7565713753709 : 8.23159912109375); (8.13243692318721 : 8.23159912109375 : JumpStart); (7.96577025652055 : 8.23159912109375 : JumpEnd); (7.75 : 8.23159912109375)]" fixedFrom="Algorithm" fixedTo="Algorithm"> 149 149 <AssociationMoniker Name="/OKBDataContext/Problem/Problem_Run" /> 150 150 <nodes> -
branches/OKB (trunk integration)/HeuristicLab.Services.OKB.DataAccess/3.3/OKB.designer.cs
r7384 r7385 2384 2384 private long _ProblemId; 2385 2385 2386 private int _RandomSeed;2387 2388 2386 private System.DateTime _CreatedDate; 2389 2387 … … 2408 2406 partial void OnProblemIdChanging(long value); 2409 2407 partial void OnProblemIdChanged(); 2410 partial void OnRandomSeedChanging(int value);2411 partial void OnRandomSeedChanged();2412 2408 partial void OnCreatedDateChanging(System.DateTime value); 2413 2409 partial void OnCreatedDateChanged(); … … 2490 2486 this.SendPropertyChanged("ProblemId"); 2491 2487 this.OnProblemIdChanged(); 2492 }2493 }2494 }2495 2496 [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RandomSeed", DbType="Int NOT NULL")]2497 public int RandomSeed2498 {2499 get2500 {2501 return this._RandomSeed;2502 }2503 set2504 {2505 if ((this._RandomSeed != value))2506 {2507 this.OnRandomSeedChanging(value);2508 this.SendPropertyChanging();2509 this._RandomSeed = value;2510 this.SendPropertyChanged("RandomSeed");2511 this.OnRandomSeedChanged();2512 2488 } 2513 2489 }
Note: See TracChangeset
for help on using the changeset viewer.