Skip to content

Commit 8fd714d

Browse files
authored
Replaced tabs with spaces
1 parent a0627ac commit 8fd714d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

EntityFramework.Reverse.POCO.Generator/EF.Reverse.POCO.Core.ttinclude

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3237,7 +3237,7 @@ SELECT SERVERPROPERTY('Edition') AS Edition,
32373237
public override void ProcessForeignKeys(List<ForeignKey> fkList, Tables tables, bool checkForFkNameClashes)
32383238
{
32393239
var constraints = fkList.Select(x => x.FkSchema + "." + x.ConstraintName).Distinct();
3240-
var doubleForeignTableRefcontraints = fkList.GroupBy(x => new { x.FkTableName, x.PkTableName }).Where(g => g.Count() > 1).SelectMany(g => g.Select(x => string.Format("{0}.{1}", x.FkSchema, x.ConstraintName))).Distinct();
3240+
var doubleForeignTableRefcontraints = fkList.GroupBy(x => new { x.FkTableName, x.PkTableName }).Where(g => g.Count() > 1).SelectMany(g => g.Select(x => string.Format("{0}.{1}", x.FkSchema, x.ConstraintName))).Distinct();
32413241
foreach (var constraint in constraints)
32423242
{
32433243
var foreignKeys = fkList

0 commit comments

Comments
 (0)