c# - EF Code First Migration: Controlling the name of code file -


as know, calling command add-migration <name> generates code file reflect changes in model. however, generated file name <timestamp>+<name> <timestamp> comes client on command executed, like: "20150603123_addnameproperty.cs"

questions:

1- way timestamp server not client?

2- way automatically put prefix in generated file name, example: "20150603123_hansmodifications_addnameproperty.cs"

3- way automatically generate file name in sequential manner, example: "20150603123_1.cs", "20150603123_2.cs", "20150603123_3.cs",...


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

php - Find a regex to take part of Email -