Skip to content

Fixed a misspelled word #389

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public MultiTableDeleteExecutor(IStatement statement)
log.Debug("Generated ID-INSERT-SELECT SQL (multi-table delete) : " + idInsertSelect);

string[] tableNames = persister.ConstraintOrderedTableNameClosure;
string[][] columnNames = persister.ContraintOrderedTableKeyColumnClosure;
string[][] columnNames = persister.ConstraintOrderedTableKeyColumnClosure;
string idSubselect = GenerateIdSubselect(persister);

deletes = new SqlString[tableNames.Length];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public MultiTableUpdateExecutor(IStatement statement) : base(statement, log)
log.Debug("Generated ID-INSERT-SELECT SQL (multi-table update) : " + idInsertSelect);

string[] tableNames = persister.ConstraintOrderedTableNameClosure;
string[][] columnNames = persister.ContraintOrderedTableKeyColumnClosure;
string[][] columnNames = persister.ConstraintOrderedTableKeyColumnClosure;

string idSubselect = GenerateIdSubselect(persister);
IList<AssignmentSpecification> assignmentSpecifications = Walker.AssignmentSpecifications;
Expand Down
2 changes: 1 addition & 1 deletion src/NHibernate/Persister/Entity/AbstractEntityPersister.cs
Original file line number Diff line number Diff line change
Expand Up @@ -998,7 +998,7 @@ public int[] NaturalIdentifierProperties
get { return entityMetamodel.NaturalIdentifierProperties; }
}

public abstract string[][] ContraintOrderedTableKeyColumnClosure { get;}
public abstract string[][] ConstraintOrderedTableKeyColumnClosure { get;}
public abstract IType DiscriminatorType { get;}
public abstract string[] ConstraintOrderedTableNameClosure { get;}
public abstract string DiscriminatorSQLValue { get;}
Expand Down
2 changes: 1 addition & 1 deletion src/NHibernate/Persister/Entity/IQueryable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public interface IQueryable : ILoadable, IPropertyMapping, IJoinable
/// The second dimension should have the same length across all the elements in
/// the first dimension. If not, that'd be a problem ;)
/// </returns>
string[][] ContraintOrderedTableKeyColumnClosure { get;}
string[][] ConstraintOrderedTableKeyColumnClosure { get;}

/// <summary>
/// Get the name of the temporary table to be used to (potentially) store id values
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ public override string[] ConstraintOrderedTableNameClosure
get { return constraintOrderedTableNames; }
}

public override string[][] ContraintOrderedTableKeyColumnClosure
public override string[][] ConstraintOrderedTableKeyColumnClosure
{
get { return constraintOrderedKeyColumnNames; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ public override string[] ConstraintOrderedTableNameClosure
get { return constraintOrderedTableNames; }
}

public override string[][] ContraintOrderedTableKeyColumnClosure
public override string[][] ConstraintOrderedTableKeyColumnClosure
{
get { return constraintOrderedKeyColumnNames; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public override string[] ConstraintOrderedTableNameClosure
get { return constraintOrderedTableNames; }
}

public override string[][] ContraintOrderedTableKeyColumnClosure
public override string[][] ConstraintOrderedTableKeyColumnClosure
{
get { return constraintOrderedKeyColumnNames; }
}
Expand Down