Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/16/11 10:49:43 (13 years ago)
Author:
abeham
Message:

#1619 (minor changes)

  • fixed initial sql script
  • removed unused class
  • changed config
  • updated entity model
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GeneralizedQAP/HeuristicLab.Services.ProblemInstances/ProblemInstancesModel.Designer.cs

    r6733 r6779  
    405405        /// <param name="id">Initial value of the Id property.</param>
    406406        /// <param name="name">Initial value of the Name property.</param>
    407         /// <param name="assignment">Initial value of the Assignment property.</param>
    408         /// <param name="assignmentHash">Initial value of the AssignmentHash property.</param>
    409407        /// <param name="quality">Initial value of the Quality property.</param>
    410         public static QAPSolution CreateQAPSolution(global::System.Int32 id, global::System.String name, global::System.String assignment, global::System.String assignmentHash, global::System.Double quality)
     408        public static QAPSolution CreateQAPSolution(global::System.Int32 id, global::System.String name, global::System.Double quality)
    411409        {
    412410            QAPSolution qAPSolution = new QAPSolution();
    413411            qAPSolution.Id = id;
    414412            qAPSolution.Name = name;
    415             qAPSolution.Assignment = assignment;
    416             qAPSolution.AssignmentHash = assignmentHash;
    417413            qAPSolution.Quality = quality;
    418414            return qAPSolution;
     
    476472        /// No Metadata Documentation available.
    477473        /// </summary>
    478         [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)]
     474        [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
    479475        [DataMemberAttribute()]
    480476        public global::System.String Assignment
     
    488484                OnAssignmentChanging(value);
    489485                ReportPropertyChanging("Assignment");
    490                 _Assignment = StructuralObject.SetValidValue(value, false);
     486                _Assignment = StructuralObject.SetValidValue(value, true);
    491487                ReportPropertyChanged("Assignment");
    492488                OnAssignmentChanged();
     
    500496        /// No Metadata Documentation available.
    501497        /// </summary>
    502         [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)]
     498        [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
    503499        [DataMemberAttribute()]
    504500        public global::System.String AssignmentHash
     
    512508                OnAssignmentHashChanging(value);
    513509                ReportPropertyChanging("AssignmentHash");
    514                 _AssignmentHash = StructuralObject.SetValidValue(value, false);
     510                _AssignmentHash = StructuralObject.SetValidValue(value, true);
    515511                ReportPropertyChanged("AssignmentHash");
    516512                OnAssignmentHashChanged();
Note: See TracChangeset for help on using the changeset viewer.