Dalibor Votruba 093deb1007 Console GetDocumentCommand final, fix misc bugs vor 4 Jahren
..
Entity 5a602f024f Add document, model ready, tested vor 4 Jahren
Repository 093deb1007 Console GetDocumentCommand final, fix misc bugs vor 4 Jahren
Data.csproj b0c5447b1d Initial commit (structure + current version) vor 4 Jahren
KeyScalarDate.cs b0c5447b1d Initial commit (structure + current version) vor 4 Jahren
readme.txt 5a602f024f Add document, model ready, tested vor 4 Jahren

readme.txt

Upd: 2.8.2021

To reverse update:
- Set Data project as Startup Project
- Ensure if solution is buildable - backup Entity folder
- Open PM (Package Manager Console from View menu)
- Run following command
Scaffold-DbContext "Server=(local);Database=BO;Trusted_Connection=True;" Microsoft.EntityFrameworkCore.SqlServer -OutputDir Entity -Force
- Go to file BOContext.cs and replace class declaration as : public partial class BOContext : DataDomain
- replace in all entities // // // public long Id { get; set; } -> // // // // public long Id { get; set; }
- replace in BOContext.cs occurency [ln cca:1069]:
modelBuilder.Entity(entity =>
{
entity.HasNoKey();

to:

modelBuilder.Entity(entity =>
{
// entity.HasNoKey();

- replace in BOContext.cs occurency [ln cca:1139]:
entity.HasOne(d => d.BillingInfo)
.WithMany(p => p.Workspaces)
.HasForeignKey(d => d.BillingInfoId)
.HasConstraintName("REL_Workspace_BillingInfo");

to:

//entity.HasOne(d => d.BillingInfo)
// .WithMany(p => p.Workspaces)
// .HasForeignKey(d => d.BillingInfoId)
// .HasConstraintName("REL_Workspace_BillingInfo");