Skip to main content

TypeUtilities by Yevhenii Serdiuk

NuGet / site data

Nuget GitHub last commit GitHub Repo stars

Details

Info

info

Name: TypeUtilities

A set of type utilities to transform types. Include utils like:

  • Pick
  • Omit

Author: Yevhenii Serdiuk

NuGet: https://www.nuget.org/packages/TypeUtilities/

You can find more details at https://github.com/DragonsLord/TypeUtilities

Source: https://github.com/DragonsLord/TypeUtilities

Original Readme

note

TypeUtilities

Build NuGet

Type Utilities provides a source generators to create/transform one type into another.

This project was inspired by the TypeScript Utility Types and was ment to bring similar functionality to the C# via source generators

Installation

To use the the TypeUtilities, install the TypeUtilities package into your project.

To install the packages, add the references to your csproj file, for example by running

dotnet add package TypeUtilities

This adds a <PackageReference> to your project.

Usage

TypeUtilities provides several attributes:

Map

Map Attribute simply maps memebers of the source type to the target type using specified format.

using TypeUtilities;
using TypeUtilities.Abstractions;

public class SourceType
{
public Guid Id { get; }
public int Value { get; set; }
public DateTime Created { get; set; }
}

[Map(typeof(SourceType))]
public partial class SimpleMap
{
}

// Generated result
//----- SimpleMap.map.SourceType.g.cs
public partial class SimpleMap
{
public System.Guid Id { get; }
public int Value { get; set; }
public System.DateTime Created { get; set; }
}
// --------------------

[Map(typeof(SourceType),
MemberDeclarationFormat = $"{Tokens.Accessibility} string Mapped{Tokens.Name}{Tokens.Accessors}",
MemberKindSelection = MemberKindFlags.ReadonlyProperty
)]
public partial class AdvancedMap
{
}

// Generated result
//----- AdvancedMap.map.SourceType.g.cs
public partial class AdvancedMap
{
public string MappedId { get; }
}
// --------------------

More detailed description for Map is provided here

Omit

Omit Attribute is similar to Map but also accepts an explicit list of members that should be exluded

using TypeUtilities;

public class SourceType
{
public Guid Id { get; }
public int Value { get; set; }
public DateTime Created { get; set; }
}

[Omit(typeof(SourceType), "Value")]
public partial class TargetType
{
public int MyValue { get; set; }
}

// Generated result
//----- TargetType.omit.SourceType.g.cs
public partial class TargetType
{
public Guid Id { get; }
public DateTime Created { get; set; }
}

Pick

Pick Attribute is similar to Map but also requires to explicitly specify all members that should be included

using TypeUtilities;

public class SourceType
{
public Guid Id { get; }
public int Value { get; set; }
public DateTime Created { get; set; }
}

[Pick(typeof(SourceType), "Id", nameof(SourceType.Value))]
public partial class TargetType
{
}

// Generated result
//----- TargetType.omit.SourceType.g.cs
public partial class TargetType
{
public Guid Id { get; }
public int Value { get; set; }
}

About

note

Pick/Omit for classes ( also have some mapping )

How to use

Example (source csproj, source files)

This is the CSharp Project that references TypeUtilities

<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)\GX</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="TypeUtilities" Version="0.0.1" />
</ItemGroup>
</Project>

Generated Files

Those are taken from $(BaseIntermediateOutputPath)\GX

namespace UtilDemo;

public partial class Person1
{
public string? FirstName { get; set; }
public string? LastName { get; set; }
}

Useful

Download Example (.NET C#)

Share TypeUtilities

https://ignatandrei.github.io/RSCG_Examples/v2/docs/TypeUtilities

aaa

Category "FunctionalProgramming" has the following generators:

1 cachesourcegenerator Nuget GitHub Repo stars 2024-02-14

2 dunet Nuget GitHub Repo stars 2023-04-16

3 Dusharp Nuget GitHub Repo stars 2024-09-19

4 Funcky.DiscriminatedUnion Nuget GitHub Repo stars 2024-01-18

5 FunicularSwitch NugetNuget GitHub Repo stars 2024-02-12

6 N.SourceGenerators.UnionTypes Nuget GitHub Repo stars 2023-10-29

7 OneOf NugetNuget GitHub Repo stars 2023-08-21

8 PartiallyApplied Nuget GitHub Repo stars 2023-04-16

9 polytype Nuget GitHub Repo stars 2024-11-04

10 rscg_demeter Nuget GitHub Repo stars 2025-03-26

11 rscg_queryables NugetNuget GitHub Repo stars 2024-11-02

12 RSCG_Utils_Memo Nuget GitHub Repo stars 2023-08-27

13 Sera.Union Nuget GitHub Repo stars 2024-08-26

14 TypeUtilities Nuget GitHub Repo stars 2024-03-05

15 UnionGen Nuget GitHub Repo stars 2024-04-05

16 UnionsGenerator Nuget GitHub Repo stars 2024-02-18

See category

FunctionalProgramming