Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 POCO 迁移的 Seed() 方法中,我试图向包管理器控制台输出一条消息,但我尝试了以下操作,但没有成功。
protected override void Seed(DBContext context) { Console.WriteLine("Test Message"); Debug.WriteLine("Test Message"); }
使用-Verbose命令对输出没有任何影响。
关于如何进行的任何想法?