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
Post a Comment