Started a brand new project with x web AppName.
Then added OrmLite support with mix postgres.
Tried running the project and getting the following error:
System.TypeLoadException: ‘Could not load type ‘ServiceStack.DataAnnotations.PersistedAttribute’ from assembly ‘ServiceStack.Interfaces, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null’.’
at:
public void Configure(IAppHost appHost)
{
appHost.GetPlugin<SharpPagesFeature>()?.ScriptMethods.Add(new DbScriptsAsync());
using (var db = appHost.Resolve<IDbConnectionFactory>().Open())
{
if (db.CreateTableIfNotExists<User>())
{
}
}
}