ZayniFramework.Formatting
2.2.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package ZayniFramework.Formatting --version 2.2.1
NuGet\Install-Package ZayniFramework.Formatting -Version 2.2.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ZayniFramework.Formatting" Version="2.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ZayniFramework.Formatting --version 2.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ZayniFramework.Formatting, 2.2.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ZayniFramework.Formatting as a Cake Addin #addin nuget:?package=ZayniFramework.Formatting&version=2.2.1 // Install ZayniFramework.Formatting as a Cake Tool #tool nuget:?package=ZayniFramework.Formatting&version=2.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Formatting module example.
Add Formatting section in your app.config or web.config file if you are going to do some DateTime formatting.
<FormattingSettings>
<DateTimeFormatStyle>
<add language="zh-TW" format="yyyy/MM/dd" isDefault="true"/>
<add language="zh-CN" format="yyyy/MM/dd"/>
<add language="en-US" format="MM-dd-yyyy"/>
</DateTimeFormatStyle>
</FormattingSettings>
Then you can add the Formatting Attribute in your Properties.
using ZayniFramework.Formatting;
public class MasterModel : BasicModel<MasterVModel>
{
// For deep formatting
[CollectionFormat()]
public List<DetailModel> Details { get; set; }
public string Name { get; set; }
[DateFormat()]
public DateTime Birthday { get; set; }
[NumberFormat( Length = 2 )]
public decimal Age { get; set; }
[CollectionFormat()]
public DetailInfoModel DetailInfo { get; set; }
}
public class MasterVModel : BasicViewModel
{
public string Name { get; set; }
public string Birthday { get; set; }
public string Age { get; set; }
// In the ViewModel only suppory 'String' property.
//public DetailInfoModel DetailInfo { get; set; }
}
Finally, you can format the Model class like this:
// Test data here...
var model = new MasterModel();
model.Name = "John";
model.Birthday = new DateTime( 1988, 1, 1 );
model.Age = 16;
model.DetailInfo = new DetailInfoModel()
{
InfoName = "JJJ",
NAVDate = new DateTime( 2013, 5, 7 )
};
model.Details = new List<DetailModel>()
{
new DetailModel
{
DetailName = "IUIU",
Length = 3M,
Pay = 45673.52434M,
NavDate = new DateTime( 2013, 3, 5 ),
Name = "Joe",
MaskStartIndex = 1,
MaskLength = 1,
Name2 = "Jimmy"
},
new DetailModel
{
DetailName = "Jack",
Length = 2M,
Pay = 785.5497M,
NavDate = new DateTime( 2013, 7, 5 ),
Name = "Kindding",
MaskStartIndex = 2,
MaskLength = 3,
Name2 = "Ruby"
}
};
// do the format here...
var viewModelType = typeof( MasterVModel );
var formatter = new DataFormatter();
var result = formatter.DoModelDeepFormat( model, viewModelType );
// get the format result here...
MasterModel resultModel = (MasterModel)result;
MasterVModel resultVModel = resultModel.ViewModel;
Or you can also use the Dynamic Formatting.
Then, you don't have to define a ViewModel class anymore. But the dynamic formatting is a little slower than using ViewModel formatting.
// Your class will extend the BasicDynamicModel instead of BasicModel
public class MasterModel2 : BasicDynamicModel
// Use dynamic formatting here...
var formatter = new DataFormatter();
object result = formatter.FormatDynamicModel( model );
// Get the dynamic formatting here...
MasterModel2 resultModel = (MasterModel2)result;
dynamic resultVModel = resultModel.ViewModel; // dynamic type
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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- ZayniFramework.Common (>= 2.2.1)
- ZayniFramework.Logging (>= 2.2.1)
- ZayniFramework.Serialization (>= 2.2.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
8.0.142 | 146 | 3/19/2024 |
8.0.141 | 152 | 1/4/2024 |
8.0.140 | 102 | 12/17/2023 |
6.0.138 | 119 | 3/19/2024 |
6.0.137 | 165 | 9/20/2023 |
6.0.136 | 156 | 9/14/2023 |
6.0.135 | 140 | 9/10/2023 |
6.0.134 | 179 | 7/12/2023 |
6.0.133 | 188 | 7/10/2023 |
6.0.132 | 183 | 7/7/2023 |
6.0.131 | 190 | 6/19/2023 |
6.0.130 | 153 | 6/19/2023 |
6.0.129 | 534 | 7/2/2022 |
6.0.128 | 544 | 1/16/2022 |
6.0.127 | 520 | 1/15/2022 |
6.0.126 | 522 | 1/15/2022 |
6.0.125 | 329 | 1/8/2022 |
6.0.125-hotfix1 | 209 | 1/8/2022 |
6.0.124 | 333 | 1/7/2022 |
6.0.123 | 462 | 11/14/2021 |
5.0.129 | 574 | 7/2/2022 |
5.0.128 | 528 | 1/16/2022 |
5.0.125 | 349 | 1/8/2022 |
5.0.124 | 321 | 1/7/2022 |
5.0.123 | 522 | 11/14/2021 |
5.0.122 | 547 | 10/11/2021 |
5.0.121 | 551 | 5/1/2021 |
3.1.137 | 142 | 9/20/2023 |
3.1.136 | 139 | 9/14/2023 |
3.1.135 | 139 | 9/10/2023 |
3.1.134 | 189 | 7/12/2023 |
3.1.133 | 182 | 7/11/2023 |
3.1.132 | 175 | 7/8/2023 |
3.1.131 | 225 | 6/19/2023 |
3.1.130 | 365 | 2/1/2023 |
3.1.129 | 536 | 7/2/2022 |
3.1.128 | 518 | 1/16/2022 |
3.1.125 | 349 | 1/8/2022 |
3.1.124 | 357 | 1/7/2022 |
3.1.123 | 529 | 11/14/2021 |
3.1.122 | 476 | 10/11/2021 |
3.1.121 | 450 | 5/1/2021 |
2.31.120 | 478 | 3/14/2021 |
2.30.115 | 519 | 3/6/2021 |
2.30.114 | 449 | 3/6/2021 |
2.20.101 | 426 | 3/1/2021 |
2.19.3 | 461 | 2/11/2021 |
2.19.2 | 502 | 2/6/2021 |
2.19.1 | 553 | 1/6/2021 |
2.19.0 | 503 | 1/1/2021 |
2.18.3 | 634 | 12/27/2020 |
2.18.2 | 602 | 8/29/2020 |
2.18.1 | 640 | 8/26/2020 |
2.18.0 | 658 | 8/20/2020 |
2.17.135 | 578 | 8/19/2020 |
2.17.134 | 696 | 7/28/2020 |
2.17.133 | 682 | 7/27/2020 |
2.17.132 | 697 | 7/18/2020 |
2.17.131 | 621 | 7/11/2020 |
2.16.130 | 706 | 6/13/2020 |
2.15.128 | 629 | 6/3/2020 |
2.15.127 | 684 | 5/31/2020 |
2.15.126 | 704 | 4/30/2020 |
2.14.122 | 624 | 4/13/2020 |
2.13.100 | 646 | 3/12/2020 |
2.12.51 | 602 | 2/18/2020 |
2.11.50 | 1,321 | 2/10/2020 |
2.10.44 | 1,310 | 1/30/2020 |
2.9.43 | 1,434 | 1/11/2020 |
2.8.42 | 1,462 | 1/10/2020 |
2.8.41 | 1,351 | 1/5/2020 |
2.7.40 | 1,341 | 1/2/2020 |
2.7.39 | 1,379 | 1/2/2020 |
2.7.38 | 1,597 | 1/1/2020 |
2.6.37 | 1,346 | 12/23/2019 |
2.6.35 | 1,321 | 12/4/2019 |
2.6.1 | 1,344 | 12/2/2019 |
2.6.0 | 1,359 | 11/28/2019 |
2.5.2 | 1,607 | 11/26/2019 |
2.5.1 | 1,394 | 11/12/2019 |
2.5.0 | 1,416 | 11/9/2019 |
2.4.3 | 882 | 10/16/2019 |
2.4.2 | 884 | 10/16/2019 |
2.4.1 | 939 | 9/20/2019 |
2.3.113 | 428 | 3/6/2021 |
2.3.112 | 438 | 3/6/2021 |
2.3.28 | 922 | 9/19/2019 |
2.3.27 | 908 | 8/30/2019 |
2.3.26 | 1,109 | 8/20/2019 |
2.3.25 | 948 | 8/12/2019 |
2.3.22 | 1,162 | 7/31/2019 |
2.3.21 | 924 | 7/20/2019 |
2.3.20 | 974 | 6/22/2019 |
2.3.19 | 836 | 6/14/2019 |
2.3.18 | 1,068 | 6/13/2019 |
2.3.17 | 918 | 6/13/2019 |
2.3.15 | 1,008 | 6/8/2019 |
2.3.14 | 1,025 | 6/8/2019 |
2.3.13 | 937 | 5/30/2019 |
2.3.12 | 696 | 5/24/2019 |
2.3.11 | 687 | 5/24/2019 |
2.3.10 | 694 | 5/21/2019 |
2.3.9 | 717 | 5/9/2019 |
2.3.8 | 671 | 5/8/2019 |
2.3.7 | 716 | 4/30/2019 |
2.3.6 | 755 | 4/23/2019 |
2.3.5 | 781 | 4/19/2019 |
2.3.4 | 750 | 4/18/2019 |
2.3.3 | 761 | 4/17/2019 |
2.3.2 | 735 | 4/6/2019 |
2.3.1 | 844 | 12/15/2018 |
2.3.0 | 852 | 12/7/2018 |
2.2.6 | 916 | 11/25/2018 |
2.2.1 | 864 | 11/17/2018 |
2.2.0 | 844 | 11/16/2018 |
2.1.0 | 839 | 11/15/2018 |
2.0.1 | 831 | 11/6/2018 |
2.0.0 | 923 | 11/4/2018 |