one to many & many to many relationship features will be added in the next releases (no exact time schedule for now)
hi,
This has been fixed in the new version. If you have time, it'll be released on 2020-03-19.
hi, is your problem still active?
duplicate of #48
see https://support.abp.io/QA/Questions/48#answer-ea26e90e-4e76-ccdf-44a4-39f3ea298e33
The package Volo.Abp.Commercial.SuiteTemplate.dll came with the latest version. If you have generated a project before v2.2.1, you need to reference this package to your *.Domain project. Make sure Package Source is set to All in NuGet Manager.
You can alternatively add this line to your *.Domain project csproj
file.
<PackageReference Include="Volo.Abp.Commercial.SuiteTemplate" Version="2.2.1" />
This is my csproj
file content:
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\common.props" />
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>Acme.MyProject</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Acme.MyProject.Domain.Shared\Acme.MyProject.Domain.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.DataAnnotations" Version="2.2.0" />
<PackageReference Include="Volo.Abp.Commercial.SuiteTemplates" Version="2.2.1" />
<PackageReference Include="Volo.Abp.Identity.Domain" Version="2.2.1" />
<PackageReference Include="Volo.Abp.PermissionManagement.Domain.Identity" Version="2.2.1" />
<PackageReference Include="Volo.Abp.IdentityServer.Domain" Version="2.2.1" />
<PackageReference Include="Volo.Abp.PermissionManagement.Domain.IdentityServer" Version="2.2.1" />
<PackageReference Include="Volo.Abp.BackgroundJobs.Domain" Version="2.2.1" />
<PackageReference Include="Volo.Abp.AuditLogging.Domain" Version="2.2.1" />
<PackageReference Include="Volo.Abp.FeatureManagement.Domain" Version="2.2.1" />
<PackageReference Include="Volo.Abp.SettingManagement.Domain" Version="2.2.1" />
<PackageReference Include="Volo.Abp.LanguageManagement.Domain" Version="2.2.1" />
<PackageReference Include="Volo.Abp.LeptonTheme.Management.Domain" Version="2.2.1" />
<PackageReference Include="Volo.Saas.Domain" Version="2.2.1" />
</ItemGroup>
</Project>
Also, you need to update your project to the latest from NuGet. Update all Abp.*** and Volo.*** packages to the latest.
You can update them from NuGet Manager in Visual Studio or alternatively you can use ABP Suite
if the package restore throws error that says cannot restore Volo.Abp.Commercial.SuiteTemplates
you might need to login to abp platform via ABP CLI toool.
check that the solution path is still valid. sometimes people move solution directory and then this error is shown up!
https://support.abp.io/QA/Questions/33#answer-d42ca2e3-fa9e-eeef-bd07-39f3e113d7d1
https://support.abp.io/QA/Questions/33#answer-d42ca2e3-fa9e-eeef-bd07-39f3e113d7d1
I'm closing the issue. Reopen if your case continues
Thank you for your feedback @trendline. We'll strongly consider it..