Skip to content

v8.3.0.0

Compare
Choose a tag to compare
@pmrogala pmrogala released this 30 Oct 19:20
· 4 commits to main since this release

8.3.0.0 - 2024-10-30

Added

  • Possibility to use static method for constructing an object instead of normal constructors.
    • simple usage
[MakeBuilder(typeof(Entity), staticFactoryMethodName: nameof(Entity.CreateEntity))]
  • It may be useful when your entity has private constructors and you create it by factory methods.