我正在使用SQL Server开发ASP.NET MVC应用程序。我尽力使用内置的优雅和高效来编写优秀的代码。
但是,在数据库中,我更喜欢在underscore_case中进一步命名,例如id_item_something
。在C#代码方面,一切都是CamelCase,如IdItemSomething
。
是否有一些魔术转换可以配置为不必编写大量...ToTable().Property(...).HasColumnName(...)
? DefaultControllerFactory
是否适合查看?
我在JavaScript-jQuery-CSS域中看到了这样的转换(" background-color"由" backgroundColor"解决),并且在ASP.NET中至少有PluralizingTableNameConvention
。
感谢您的任何提示。