vita
vita copied to clipboard
VITA Application Framework
Hello there, any upcomming releases planed for this year, any new features or any new on missing features thar where to come back from the old vertion? No new is...
My entity models: ~~~C# [Entity] [EntitySavingEvent(nameof(BillingModule.OnSavingInvoice))] public interface IBillingInvoice { [PrimaryKey, Size(20)] string InvoiceNo { get; set; } IBillingAccount Account { get; set; } IUnit Unit { get; set; }...
It triggers only for update and delete, but not add new. Bug?
In 'EntityModule.RegisterMigrations' I create several GIST indexes (working with PostgreSQL) at the end of migration (AddPostUpgradeAction) by running an SQL script. When I create database and apply a schema update,...
Some details here: https://github.com/rivantsov/vita/wiki/Code-changes-history
Is there any plan to extend the set of supported data types for PostgreSQL? For example, an intarray column. It would be nice to have this type including GiST, GIN...
In Vita 1.x vdbtool scripted the existing MsSql views, and they worked as expected. How can I script/use them in 3.x? Another question: In 1.x I used lots of [NoColumn]...
I have updated to version 3.6 and i have encontered problems, in some parts of my app it is very slow, and when i try to add a complex object...
See issue #225
Hi @rivantsov , Refer to the discussion in #220, here is the issue created for allowing reference entity without creating the foreign key constraint in table. There are cases where...