when i create my entity data model i have a situation in the DB like this :
TableFirst : [Id,IdTableSecond,IdTableSecondAgain];TableSecond[Id]
Created data model is: TableFirst.TableSecond and TableFirst.TableSecond1
Question is: Every time when i create my entity TableFirst.TableSecond will have same relation in behind (IdTableSecond) and TableFirst.TableSecond1 (IdTableSecondAgain)
or they may change?
PS:sorry for my english.
You should rename the
TableFirst.TableSecondandTableFirst.TableSecond1navigation properties to something meaningful, and whenever you update the model from the database, they will NOT get overriden (you will keep your meaningful names).