Skip to content

Commit 1038416

Browse files
committed
Allow ForeignKey.IsNotForced to be changed
1 parent 8b6ae5d commit 1038416

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
@@ -3771,12 +3771,12 @@ SELECT SERVERPROPERTY('Edition') AS Edition,
37713771
public string ConstraintName { get; private set; }
37723772
public int Ordinal { get; private set; }
37733773
public bool CascadeOnDelete { get; private set; }
3774-
public bool IsNotEnforced { get; private set; }
37753774

37763775
// User settable via ForeignKeyFilter callback
37773776
public string AccessModifier { get; set; }
37783777
public bool IncludeReverseNavigation { get; set; }
37793778
public bool IncludeRequiredAttribute { get; set; }
3779+
public bool IsNotEnforced { get; set; }
37803780

37813781
public ForeignKey(string fkTableName, string fkSchema, string pkTableName, string pkSchema, string fkColumn, string pkColumn, string constraintName, string pkTableNameFiltered, int ordinal, bool cascadeOnDelete, bool isNotEnforced)
37823782
{

0 commit comments

Comments
 (0)