github上可用的大多数开源WPF应用程序都在使用面向类型的项目结构
Views/
Customer.xaml
Order.xaml
ViewModels/
CustomerViewModel.cs
OrderViewModel.cs
Models/
Customer.cs
Order.cs
我们将要开发的应用程序将具有10-12个屏幕,并且面向功能的结构将使我们能够轻松地找到类并进行更改,例如
Customer/
Customer.cs
Customer.xaml
CustomerViewModel.cs
Order/
Order.cs
Order.xaml
OrderViewModel.cs
我的问题是使用面向特征的结构有什么缺点吗?