Changeset d2eccb3 for KernelRecordsMVC.Infrastructure
- Timestamp:
- 09/01/26 06:13:32 (4 weeks ago)
- Branches:
- main
- Children:
- d89d25b
- Parents:
- fa0fbaf
- Location:
- KernelRecordsMVC.Infrastructure
- Files:
-
- 1 added
- 23 edited
-
Data/KernelRecordsContext.cs (modified) (6 diffs)
-
bin/Debug/net8.0/KernelRecordsMVC.Application.dll (modified) ( previous)
-
bin/Debug/net8.0/KernelRecordsMVC.Application.pdb (modified) ( previous)
-
bin/Debug/net8.0/KernelRecordsMVC.Domain.dll (modified) ( previous)
-
bin/Debug/net8.0/KernelRecordsMVC.Domain.pdb (modified) ( previous)
-
bin/Debug/net8.0/KernelRecordsMVC.Infrastructure.dll (modified) ( previous)
-
bin/Debug/net8.0/KernelRecordsMVC.Infrastructure.pdb (modified) ( previous)
-
obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.AssemblyInfo.cs (modified) (1 diff)
-
obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.AssemblyInfoInputs.cache (modified) (1 diff)
-
obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.csproj.AssemblyReference.cache (modified) ( previous)
-
obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.csproj.CoreCompileInputs.cache (modified) (1 diff)
-
obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.csproj.FileListAbsolute.txt (modified) (1 diff)
-
obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.dll (modified) ( previous)
-
obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.pdb (modified) ( previous)
-
obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.sourcelink.json (added)
-
obj/Debug/net8.0/ref/KernelRecordsMVC.Infrastructure.dll (modified) ( previous)
-
obj/Debug/net8.0/refint/KernelRecordsMVC.Infrastructure.dll (modified) ( previous)
-
obj/KernelRecordsMVC.Infrastructure.csproj.nuget.dgspec.json (modified) (3 diffs)
-
obj/KernelRecordsMVC.Infrastructure.csproj.nuget.g.props (modified) (1 diff)
-
obj/project.assets.json (modified) (1 diff)
-
obj/project.nuget.cache (modified) (1 diff)
-
obj/project.packagespec.json (modified) (1 diff)
-
obj/rider.project.model.nuget.info (modified) (1 diff)
-
obj/rider.project.restore.info (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
KernelRecordsMVC.Infrastructure/Data/KernelRecordsContext.cs
rfa0fbaf rd2eccb3 1 using Microsoft.EntityFrameworkCore; 1 using KernelRecordsMVC.Domain.Enums; 2 using KernelRecordsMVC.Domain.Models; 2 3 using KernelRecordsMVC.Models; 3 using KernelRecordsMVC.Domain.Enums;4 5 namespace KernelRecordsMVC. Data;4 using Microsoft.EntityFrameworkCore; 5 6 namespace KernelRecordsMVC.Infrastructure.Data; 6 7 7 8 public class KernelRecordsContext : DbContext … … 38 39 public DbSet<AlbumSong> AlbumSongs => Set<AlbumSong>(); 39 40 41 /* 40 42 public DbSet<SingleFeature> SingleFeatures => Set<SingleFeature>(); 43 */ 41 44 42 45 protected override void OnModelCreating(ModelBuilder modelBuilder) … … 74 77 75 78 entity.Property(x => x.UserId) 76 .HasColumnName("user_id"); 79 .HasColumnName("user_id") 80 .ValueGeneratedOnAdd(); 77 81 78 82 entity.Property(x => x.Email) … … 332 336 333 337 entity.Property(x => x.OrderId) 334 .HasColumnName("order_id"); 338 .HasColumnName("order_id") 339 .ValueGeneratedOnAdd(); 335 340 336 341 entity.Property(x => x.UserId) … … 636 641 637 642 638 / / ==========================================643 /*// ========================================== 639 644 // SINGLE_FEATURES 640 645 // ========================================== … … 665 670 .HasForeignKey(x => x.SongId) 666 671 .OnDelete(DeleteBehavior.Cascade); 667 }); 672 });*/ 668 673 } 669 674 } -
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.AssemblyInfo.cs
rfa0fbaf rd2eccb3 14 14 [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 15 [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0 ")]16 [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+08aefc6f3b51f4bfcb7471a2fd319c064171b1c5")] 17 17 [assembly: System.Reflection.AssemblyProductAttribute("KernelRecordsMVC.Infrastructure")] 18 18 [assembly: System.Reflection.AssemblyTitleAttribute("KernelRecordsMVC.Infrastructure")] -
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.AssemblyInfoInputs.cache
rfa0fbaf rd2eccb3 1 d976ae6787ec8432847a2e4a4140d72c79cd2ba9e76e73db206545c5a751875b 1 29890c3fa606f2219be884cf9fa6f0ab8840edefa58328d6f0795dd731979610 -
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.csproj.CoreCompileInputs.cache
rfa0fbaf rd2eccb3 1 172f49bb6c82fcb78f69344b4dd9ce465cbf6952d7b3124c07aea1efcc20d8c11 c1e834df3a637502318b13439bebab2faed2d8515d0ecc0b012d76514222e7e1 -
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.csproj.FileListAbsolute.txt
rfa0fbaf rd2eccb3 11 11 C:\Users\Marko\RiderProjects\KernelRecordsMVC\KernelRecordsMVC.Infrastructure\obj\Debug\net8.0\KernelRecordsMVC.Infrastructure.AssemblyInfo.cs 12 12 C:\Users\Marko\RiderProjects\KernelRecordsMVC\KernelRecordsMVC.Infrastructure\obj\Debug\net8.0\KernelRecordsMVC.Infrastructure.csproj.CoreCompileInputs.cache 13 C:\Users\Marko\RiderProjects\KernelRecordsMVC\KernelRecordsMVC.Infrastructure\obj\Debug\net8.0\KernelRecordsMVC.Infrastructure.sourcelink.json 13 14 C:\Users\Marko\RiderProjects\KernelRecordsMVC\KernelRecordsMVC.Infrastructure\obj\Debug\net8.0\KernelRe.F712F941.Up2Date 14 15 C:\Users\Marko\RiderProjects\KernelRecordsMVC\KernelRecordsMVC.Infrastructure\obj\Debug\net8.0\KernelRecordsMVC.Infrastructure.dll -
KernelRecordsMVC.Infrastructure/obj/KernelRecordsMVC.Infrastructure.csproj.nuget.dgspec.json
rfa0fbaf rd2eccb3 69 69 } 70 70 }, 71 "runtimeIdentifierGraphPath": "C:\\ Users\\Marko\\.dotnet\\sdk\\8.0.422/PortableRuntimeIdentifierGraph.json"71 "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.424/PortableRuntimeIdentifierGraph.json" 72 72 } 73 73 } … … 133 133 } 134 134 }, 135 "runtimeIdentifierGraphPath": "C:\\ Users\\Marko\\.dotnet\\sdk\\8.0.422/PortableRuntimeIdentifierGraph.json"135 "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.424/PortableRuntimeIdentifierGraph.json" 136 136 } 137 137 } … … 208 208 } 209 209 }, 210 "runtimeIdentifierGraphPath": "C:\\ Users\\Marko\\.dotnet\\sdk\\8.0.422/PortableRuntimeIdentifierGraph.json"210 "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.424/PortableRuntimeIdentifierGraph.json" 211 211 } 212 212 } -
KernelRecordsMVC.Infrastructure/obj/KernelRecordsMVC.Infrastructure.csproj.nuget.g.props
rfa0fbaf rd2eccb3 8 8 <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Marko\.nuget\packages\</NuGetPackageFolders> 9 9 <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> 10 <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' "> 7.0.0</NuGetToolVersion>10 <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.2</NuGetToolVersion> 11 11 </PropertyGroup> 12 12 <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> -
KernelRecordsMVC.Infrastructure/obj/project.assets.json
rfa0fbaf rd2eccb3 829 829 } 830 830 }, 831 "runtimeIdentifierGraphPath": "C:\\ Users\\Marko\\.dotnet\\sdk\\8.0.422/PortableRuntimeIdentifierGraph.json"831 "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.424/PortableRuntimeIdentifierGraph.json" 832 832 } 833 833 } -
KernelRecordsMVC.Infrastructure/obj/project.nuget.cache
rfa0fbaf rd2eccb3 1 1 { 2 2 "version": 2, 3 "dgSpecHash": " qmuqeCPk0qg=",3 "dgSpecHash": "xTa02EzbK+0=", 4 4 "success": true, 5 5 "projectFilePath": "C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Infrastructure\\KernelRecordsMVC.Infrastructure.csproj", -
KernelRecordsMVC.Infrastructure/obj/project.packagespec.json
rfa0fbaf rd2eccb3 1 "restore":{"projectUniqueName":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Infrastructure\\KernelRecordsMVC.Infrastructure.csproj","projectName":"KernelRecordsMVC.Infrastructure","projectPath":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Infrastructure\\KernelRecordsMVC.Infrastructure.csproj","packagesPath":"","outputPath":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Infrastructure\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Application\\KernelRecordsMVC.Application.csproj":{"projectPath":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Application\\KernelRecordsMVC.Application.csproj"},"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Domain\\KernelRecordsMVC.Domain.csproj":{"projectPath":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Domain\\KernelRecordsMVC.Domain.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.8, )"},"Npgsql.EntityFrameworkCore.PostgreSQL":{"target":"Package","version":"[8.0.8, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\ Users\\Marko\\.dotnet\\sdk\\8.0.422/PortableRuntimeIdentifierGraph.json"}}1 "restore":{"projectUniqueName":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Infrastructure\\KernelRecordsMVC.Infrastructure.csproj","projectName":"KernelRecordsMVC.Infrastructure","projectPath":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Infrastructure\\KernelRecordsMVC.Infrastructure.csproj","packagesPath":"","outputPath":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Infrastructure\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Application\\KernelRecordsMVC.Application.csproj":{"projectPath":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Application\\KernelRecordsMVC.Application.csproj"},"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Domain\\KernelRecordsMVC.Domain.csproj":{"projectPath":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Domain\\KernelRecordsMVC.Domain.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.8, )"},"Npgsql.EntityFrameworkCore.PostgreSQL":{"target":"Package","version":"[8.0.8, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\8.0.424/PortableRuntimeIdentifierGraph.json"}} -
KernelRecordsMVC.Infrastructure/obj/rider.project.model.nuget.info
rfa0fbaf rd2eccb3 1 178 788991231129711 17882300160467997 -
KernelRecordsMVC.Infrastructure/obj/rider.project.restore.info
rfa0fbaf rd2eccb3 1 178 788995962548091 17882300160467997
Note:
See TracChangeset
for help on using the changeset viewer.
