RSCG – Hsu.Sg.FluentMember
RSCG – Hsu.Sg.FluentMember
name | Hsu.Sg.FluentMember |
nuget | https://www.nuget.org/packages/Hsu.Sg.FluentMember/ |
link | https://github.com/hsu-net/source-generators |
author | Net Hsu |
Adding builder pattern to classes
This is how you can use Hsu.Sg.FluentMember .
The code that you start with is
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 | < Project Sdk = "Microsoft.NET.Sdk" > < PropertyGroup > < OutputType >Exe</ OutputType > < TargetFramework >net8.0</ TargetFramework > </ PropertyGroup > < PropertyGroup > < EmitCompilerGeneratedFiles >true</ EmitCompilerGeneratedFiles > < CompilerGeneratedFilesOutputPath >$(BaseIntermediateOutputPath)\GX</ CompilerGeneratedFilesOutputPath > </ PropertyGroup > < ItemGroup > < PackageReference Include = "Hsu.Sg.FluentMember" Version = "2024.101.8-rc175707" > < PrivateAssets >all</ PrivateAssets > < IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</ IncludeAssets > </ PackageReference > </ ItemGroup > </ Project > |
The code that you will use is
1 2 3 4 5 6 | using Builder; var pOld = new Person(); pOld= pOld.WithFirstName( "Andrei" ).WithLastName( "Ignat" ).WithMiddleName( "G" ); System.Console.WriteLine(pOld.FullName()); |
01 02 03 04 05 06 07 08 09 10 11 12 13 14 | namespace Builder; [Hsu.Sg.FluentMember.FluentMember] public partial class Person { public string FirstName { get ; init; } public string ? MiddleName { get ; init; } public string LastName { get ; init; } public string FullName() { return FirstName + " " + MiddleName + " " +LastName; } } |
The code that is generated is
001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 045 046 047 048 049 050 051 052 053 054 055 056 057 058 059 060 061 062 063 064 065 066 067 068 069 070 071 072 073 074 075 076 077 078 079 080 081 082 083 084 085 086 087 088 089 090 091 092 093 094 095 096 097 098 099 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | // <auto-generated/> using System; namespace Hsu.Sg.FluentMember { /// <summary> /// The flag to generate member set method. /// </summary> [AttributeUsage( AttributeTargets.Struct | AttributeTargets.Class, AllowMultiple = false , Inherited = false )] internal sealed class FluentMemberAttribute : Attribute { /// <summary> /// The public member are generated. /// </summary> public bool Public { get ; set ; } = true ; /// <summary> /// The internal member are generated. /// </summary> public bool Internal { get ; set ; } /// <summary> /// The private member are generated. /// </summary> public bool Private { get ; set ; } /// <summary> /// Only [FluentMemberGen] member are generated. /// </summary> public bool Only { get ; set ; } /// <summary> /// The prefix of member name. /// </summary> /// <remarks>default is `With`</remarks> public string Prefix { get ; set ; } = string .Empty; } [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Event, AllowMultiple = false , Inherited = false )] internal sealed class FluentMemberGenAttribute : Attribute { /// <summary> /// Ignore member. /// </summary> public bool Ignore { get ; set ; } /// <summary> /// The specific name of member. /// </summary> public string Identifier { get ; set ; } = string .Empty; /// <summary> /// The prefix of member name. /// </summary> /// <remarks>default is `With`</remarks> public string Prefix { get ; set ; } = string .Empty; /// <summary> /// The modifier of member /// </summary> /// <remarks>default is <see cref="Accessibility.Inherit"/></remarks> public Accessibility Modifier { get ; set ; } = Accessibility.Inherit; } /// <summary> /// The accessibility for fluent member set method. /// </summary> //[System.DefaultValue(Inherit)] internal enum Accessibility { /// <summary> /// Inherit from the member. /// </summary> Inherit, /// <summary> /// Is public access. /// </summary> Public, /// <summary> /// Is internal access. /// </summary> Internal, /// <summary> /// Is protected access. /// </summary> Protected, /// <summary> /// Is private access. /// </summary> Private } /// <summary> /// The event assignment /// </summary> //[System.DefaultValue(Add)] public enum EventAssignable { /// <summary> /// To add the event /// </summary> Add, /// <summary> /// To remove the event /// </summary> Remove, /// <summary> /// To set the event /// </summary> Assign } } |
Code and pdf at
https://ignatandrei.github.io/RSCG_Examples/v2/docs/Hsu.Sg.FluentMember
Leave a Reply