Skip to content

Commit

Permalink
Merge pull request #8 from LazZiya/vNext
Browse files Browse the repository at this point in the history
Fixes #7
  • Loading branch information
LazZiya authored Oct 6, 2021
2 parents db5b673 + 39f2acc commit 65b686e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion XLocalizer.DB/Models/XDbCulture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ public class XDbCulture
/// <summary>
/// Collection of localized values
/// </summary>
public ICollection<IXDbResource> Translations { get; set; }
public virtual ICollection<IXDbResource> Translations { get; set; }
}
}
2 changes: 1 addition & 1 deletion XLocalizer.DB/Models/XDbResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class XDbResource : IXDbResource
/// <summary>
/// Cultre
/// </summary>
public XDbCulture Culture { get; set; }
public virtual XDbCulture Culture { get; set; }

/// <summary>
/// Enable, disable
Expand Down
11 changes: 5 additions & 6 deletions XLocalizer.DB/XLocalizer.DB.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,16 @@
Database provider for XLocalizer.
</Description>
<Copyright>Ziyad.info</Copyright>
<PackageProjectUrl>http://docs.ziyad.info/XLocalizer</PackageProjectUrl>
<PackageProjectUrl>https://docs.ziyad.info/en/XLocalizer</PackageProjectUrl>
<PackageTags>asp.net, core, razor, mvc, localization, globalization, client side, validation,scripts</PackageTags>
<PackageReleaseNotes>
- New option LocalizeDefaultCulture, for more details see: https://github.com/LazZiya/XLocalizer/issues/19#issuecomment-820531828
Release notes: https://github.com/LazZiya/XLocalizer.DB/releases
- Fix: EFCore UseLazyLoadingProxies prevents usage of DB store #7 https://github.com/LazZiya/XLocalizer.DB/issues/7
Docs: https://docs.ziyad.info
</PackageReleaseNotes>
<VersionPrefix>1.0.2</VersionPrefix>
<VersionPrefix>1.0.3</VersionPrefix>
<VersionSuffix></VersionSuffix>
<AssemblyVersion>1.0.2.0</AssemblyVersion>
<FileVersion>1.0.2.0</FileVersion>
<AssemblyVersion>1.0.3.0</AssemblyVersion>
<FileVersion>1.0.3.0</FileVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIconUrl>https://github.com/LazZiya/XLocalizer.DB/raw/master/XLocalizer.DB/files/icon.png</PackageIconUrl>
Expand Down

0 comments on commit 65b686e

Please sign in to comment.