File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
Source/Libraries/GSF.Core/Data Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -1912,9 +1912,9 @@ public int PrimaryKeyFieldCount
19121912 {
19131913 int count = 0 ;
19141914
1915- foreach ( Field field in m_fields )
1915+ foreach ( Field @ field in m_fields )
19161916 {
1917- if ( field . IsPrimaryKey )
1917+ if ( @ field. IsPrimaryKey )
19181918 count += 1 ;
19191919 }
19201920
@@ -1929,9 +1929,9 @@ public bool ReferencedByForeignKeys
19291929 {
19301930 get
19311931 {
1932- foreach ( Field field in m_fields )
1932+ foreach ( Field @ field in m_fields )
19331933 {
1934- if ( field . IsPrimaryKey && field . ForeignKeys . Count > 0 )
1934+ if ( @ field. IsPrimaryKey && @ field. ForeignKeys . Count > 0 )
19351935 return true ;
19361936 }
19371937 return false ;
@@ -1945,9 +1945,9 @@ public bool IsForeignKeyTable
19451945 {
19461946 get
19471947 {
1948- foreach ( Field field in m_fields )
1948+ foreach ( Field @ field in m_fields )
19491949 {
1950- if ( field . IsForeignKey )
1950+ if ( @ field. IsForeignKey )
19511951 return true ;
19521952 }
19531953 return false ;
@@ -1972,10 +1972,10 @@ public Field AutoIncField
19721972 {
19731973 get
19741974 {
1975- foreach ( Field field in m_fields )
1975+ foreach ( Field @ field in m_fields )
19761976 {
1977- if ( field . AutoIncrement )
1978- return field ;
1977+ if ( @ field. AutoIncrement )
1978+ return @ field;
19791979 }
19801980
19811981 return null ;
You can’t perform that action at this time.
0 commit comments