DimonSmart.StringTrimmerGenerator
1.0.2
Prefix Reserved
dotnet add package DimonSmart.StringTrimmerGenerator --version 1.0.2
NuGet\Install-Package DimonSmart.StringTrimmerGenerator -Version 1.0.2
<PackageReference Include="DimonSmart.StringTrimmerGenerator" Version="1.0.2" />
paket add DimonSmart.StringTrimmerGenerator --version 1.0.2
#r "nuget: DimonSmart.StringTrimmerGenerator, 1.0.2"
// Install DimonSmart.StringTrimmerGenerator as a Cake Addin #addin nuget:?package=DimonSmart.StringTrimmerGenerator&version=1.0.2 // Install DimonSmart.StringTrimmerGenerator as a Cake Tool #tool nuget:?package=DimonSmart.StringTrimmerGenerator&version=1.0.2
StringTrimmerGenerator
Don't ever rely on user input! This package offers the ability to trim all class strings at once. Sanitizing input data before processing is beneficial.
Usage example
Typical request for user creation
[GenerateStringTrimmer]
public class CreateUserRequest
{
public string Name { get; set; }
public string Surname { get; set; }
public string Nickname { get; set; }
public UserPhone Phone { get; set; }
}
[GenerateStringTrimmer]
public class UserPhone
{
public string PhoneNumber { get; set; }
public string Comment { get; set; }
public string Tags { get; set; }
public override string ToString() => $"PhoneNumber:'{PhoneNumber}', Comment:'{Comment}', Tags:'{Tags}'";
}
Fields trimming Before this nuget
public void CreateUser (CreateUserRequest request)
{
request.Name = request.Name.Trim();
request.Surname = request.Surname.Trim();
request.NickName = request.NickName.Trim();
request.Phone.PhoneNumber = request.Phone.PhoneNumber.Trim();
request.Phone.Comment = request.Phone.Comment.Trim();
request.Phone.Tags = request.Phone.Tags.Trim();
// Send to db logic
}
Fields trimming WITH this nuget
public void CreateUser (CreateUserRequest request)
{
request.TrimAll();
// Send to db logic
}
Why is trimming user import is important?
Imaging you simply forgot trimming the UserName field and send exa ctly the same users to the database many times.
As a result you have user(s)
- "John Doe "
- " John Doe"
- " John Doe "
- "John Doe"
Having the same user registered many times irritates the support personnel!
Note: It is usual for users to not merely input a UserName during registration, but to copy it from other sources with different spaces surrounding (and inside) the name.
Note: There is a StringTrimmer package with provide similar functionality The difference is:
- StringTrimmer - reflection based.
- StringTrimmerGenerator - use Source Generator to provide best performance
Note: Visual studio have well known "bug" while using the source generators. So you have to reopen the solution after adding source generator nuget package.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.