November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
Strange. Did you have a GUID specified in your ContentType attribute for that block?
And another extra observation: for new contenttypes the "Base" column gets a value when the contenttype is added to the DB.
So, it looks like some migration went wrong.
I ran into the same problem when refactoring and changing the namespace of a block.
After filling in "Block" in the (local) database in the "base" field in the row in tblContentType the problem was fixed and the site loaded again.
I have no access to the databases in our INT, PRED and PROD environments, so a fix for this problem would be welcome.
This problem occurred in version 11.15.1 and is not fixed in the latest 11.16.0 version. Best thing is to roll back to version 11.15.0.
EPiServer support is aware of this problem and a fix in the CMS.Core package will probably be released in version 11.17.0
I encountered the same problem in DXC. I used EF migrations on our DB context to manually run SQL statements to update the ModelType. The trick was how to get the migrations to run before the ModelSyncInitialization so I could make it work on DXC. In the end I figured out I could (mis)use the IConfigurableModule interface for a database initialization module as the ConfigureContainer method is run on all modules before initialization begins.
[InitializableModule]
public class DatabaseInitialization : IConfigurableModule
{
public void ConfigureContainer(ServiceConfigurationContext context)
{
Database.SetInitializer(new MigrateDatabaseToLatestVersion<MyDbContext, MyDbConfiguration>());
using (var db = new MyDbContext())
{
db.Database.Initialize(false);
}
}
public void Initialize(InitializationEngine context) { }
public void Uninitialize(InitializationEngine context) { }
}
public partial class DatabaseFixes : DbMigration
{
public override void Up()
{
Sql("update [tblContentType] set ModelType = 'MyProject.Models.Blocks.MyBlock, MyProject.NewProject, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' where ModelType = 'MyProject.Models.Blocks.MyBlock, MyProject.OldProject, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'");
}
public override void Down()
{
}
}
I should add in my case as you can see I didn't get to the stage of playing with the base field - just updated the ModelType to match my refactoring - but the same approach should be useable for any database script you need to run before model synchronisation.
@Mark: I think you could use an Episerver MigrationStep for this .. I tried to use this to update the Base property on a contenttype, but this fails because of checks in the internal Episerver code.
So, going around this using EF migrations in an Episerver MigrationStep could make sure this is ran before ModelSyncInitialization.
Today I ran into a weird issue when refactoring code. As a result of the refactoring I changed the namespace of a block contenttype.
This resulted in a runtime error when synchronizing the contenttypes:
ContentType with name '{0}' has a ModelType '{1}' that does not correspond to the required 'IContent'.
Which is a rather strange error because blocks do not implement IContent (at least not at compile time).
After decompiling the code responsible for generating the error: EPiServer.DataAbstraction.Internal.DefaultContentTypeRepository, I found out that the error originated from the following code in the ValidateModelType method:
The line with:
Is using a "Base" property on the contenttype. When checking our database I saw that the column "Base" in table "[dbo].[tblContentType]" was filled with values for all Episerver contenttypes, but our project specific contenttypes all had a NULL value.
After filling the column "Base" with value "Block" for our custom blocks things started working again.
I am not sure why this error occured, it feels like an issue with an Episerver upgrade. The column was recently added after upgrading to a new Eiserver version I think (it isn't there in my current version of the Episerver Foundation project).
The comments on the Base property of the ContentType class is:
/// <summary>
/// NOTE: This is a pre-release API that is UNSTABLE and might not satisfy the compatibility requirements as denoted by its associated normal version.
/// Gets or sets the base for this content type instance (e.g. page or block or etc).
/// </summary>
:)
We are currently on version EPiServer.Framework 11.15.1.
Can someone tell me why this is happening?