Conventions override
var original = conventions.IsViewModel;
conventions.IsViewModel = type =>
{
if ( type.Namespace == "MyViewModelsNamespace" )
{
return true;
}
return original( type );
};conventions.IsViewModel = type =>
{
if ( type.Namespace == "MyViewModelsNamespace" )
{
return true;
}
return conventions.DefaultIsViewModel( type );
};Last updated