我目前正致力于为3层解决方案寻找一个好的项目结构,以避免在新项目中不必要的工作。
该项目将包含一个具有
的核心产品现在的问题是,客户可能会有一些特殊要求可能会导致上述所有项目发生变化。所以我的想法是我可以使用基础结构并为客户创建相同的结构。如果没有任何更改,我只会有空类,只是扩展基类并且不添加任何内容。
这让我想到以下问题:
如果有更好的方法来处理客户特定的更改,我也会接受对项目结构的更改。
编辑:我可能会使用以下方法来解决问题。
实体框架:
首先使用代码,似乎可以让一个模型项目扩展另一个项目。这意味着我可以编写类似的内容:
public class CoreAddress{
[Key]
public int AdrId{get; set;}
public string Street {get;set;}
}
public class CustomerAddress : CoreAddress{
public string StreetNumber {get; set;}
}
只有在完成这项工作时才需要的东西是DbContext中的一行:
(this as IObjectContextAdapter).ObjectContext.MetadataWorkspace.LoadFromAssembly(typeof(<entity from other assembly>).Assembly);
XAML
要在XAML中获得类似的行为,我必须使用Caliburn.Micro(与MEF结合使用),这在这里是一个很好的帮助。
我会创建包含ContentControl元素的UserControls,这些元素是使用MEF动态获取的。这意味着我再次拥有一个包含所有视图和ViewModel的核心项目。如果我需要在某个地方为客户交换特殊控件,我将控件更改为ContentControl并为其创建核心视图和ViewModel(与更改请求之前的相同)。 ContentControl的ViewModel带有导出接口和ExportMetadata,用于设置优先级1。 现在我用另一个UserControl创建另一个项目,该项目具有一些其他控件而不是核心控件,并再次注释为具有相同接口的导出,但将我的优先级设置得更高,因此加载了客户特定控件。
简短的例子:
主要用户控制和视图模型:
<UserControl x:Class="SilverlightApplication5.TestView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="White">
<StackPanel>
<ContentControl x:Name="Item"/>
<TextBox x:Name="TextItem" Text="asdf"/>
</StackPanel>
</Grid>
</UserControl>
public class TestViewModel : Screen
{
private object viewModel;
private Lazy<IMyViewModel, IPluginMetadata>[] _orderEditorFactory;
[ImportMany(typeof(IMyViewModel), AllowRecomposition = true)]
public Lazy<IMyViewModel, IPluginMetadata>[] OrderEditorFactory
{
get { return _orderEditorFactory; }
set
{
_orderEditorFactory = value;
Item = _orderEditorFactory.OrderByDescending(lazy => lazy.Metadata.Priority).First().Value;
}
}
private object _item;
public object Item
{
get { return _item; }
set
{
_item = value;
NotifyOfPropertyChange(() => Item);
}
}
}
核心控制:
<UserControl x:Class="SilverlightClassLibrary2.MainControlView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<StackPanel>
<TextBlock x:Name="Test" Text="Text from Core control"/>
</StackPanel>
</UserControl>
[Export(typeof (IMyViewModel))]
[ExportMetadata("Name", "Pluginc")]
[ExportMetadata("Priority", 30)]
public class MainControlViewModel : Screen, IHarnessAware, IMyViewModel
{
}
客户特定控制:
<UserControl x:Class="SilverlightClassLibrary1.CustomView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="White">
<RadioButton x:Name="Test" Content="{Binding Path=Test}"/>
</Grid>
</UserControl>
[Export(typeof(IMyViewModel))]
[ExportMetadata("Name", "Plugind")]
[ExportMetadata("Priority", 2)]
public class CustomViewModel : MainControlViewModel, IHarnessAware, IMyViewModel
{
}
导出界面:
public interface IMyViewModel
{
}
ExportMetadata接口:
public interface
IPluginMetadata
{
string Name { get; }
[DefaultValue(0)]
int Priority { get; }
}
我确实用它来回答这个问题,因为我仍然对其他可能已经解决了类似问题的人的意见感兴趣。
答案 0 :(得分:0)
关于项目结构: 您可以创建一个基础项目,包含您需要的每个关注层。模型,业务,视图,存储库等。
还创建一些基本流程,例如,单个视图及其控制器直到存储库。将其保存在您的代码库中,然后在需要创建新项目时将其分叉。
现在不需要花时间设置,您只需要一些时间来根据项目需要进行自定义。
关于XAML:恕我直言,如果更改组件,则应确保它返回与控件预期相同的数据类型。如果将文本框替换为复选框,请确保检查将字符串返回给控制器。