Skip to content

Commit

Permalink
Merge pull request #39 from sql-bi/alberto/fix-bravo-issue-730
Browse files Browse the repository at this point in the history
Fix SaveAffectedRelationships FromColumn
  • Loading branch information
marcosqlbi authored Oct 12, 2023
2 parents 7fc15cd + 841caf8 commit 8bc9897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Dax.Template/Tables/TableTemplateBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ where r is SingleColumnRelationship
select r)
where relationship.FromTable.Name == tabularTable.Name
&& IsRelationshipToSaveAndRestore(relationship)
select (relationship, relationship.FromColumn.Name, relationship.ToColumn.IsKey);
select (relationship, relationship.FromColumn.Name, relationship.FromColumn.IsKey);
}
}

Expand Down

0 comments on commit 8bc9897

Please sign in to comment.