ZayniFramework.Logging 2.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package ZayniFramework.Logging --version 2.3.0
NuGet\Install-Package ZayniFramework.Logging -Version 2.3.0
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.Logging" Version="2.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ZayniFramework.Logging --version 2.3.0
#r "nuget: ZayniFramework.Logging, 2.3.0"
#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.Logging as a Cake Addin
#addin nuget:?package=ZayniFramework.Logging&version=2.3.0

// Install ZayniFramework.Logging as a Cake Tool
#tool nuget:?package=ZayniFramework.Logging&version=2.3.0

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 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.

NuGet packages (18)

Showing the top 5 NuGet packages that depend on ZayniFramework.Logging:

Package Downloads
ZayniFramework.Validation

The Validation module provide many kinds of validation attributes and Validator for .NET applications. GitLab Repository: https://gitlab.com/ponylin1985/zayniframework

ZayniFramework.Middle.Service.Entity

The Middle.ServiceHost.Entity define the entities and DTOs for Middle.ServiceHost and Middle.ServiceHost.Client module. GitLab Repository: https://gitlab.com/ponylin1985/zayniframework

ZayniFramework.DataAccess

This is a lightweight ORM framework like Dapper but also provider DbCommand SQL log. Support Microsoft SQL Server, MySQL, PostgreSQL and Oracle database. Also support dynamic ORM. GitLab Repository: https://gitlab.com/ponylin1985/zayniframework

ZayniFramework.Middle.Service

The Middle.Service module provide a self-hosted .NET middleware framework to separate the communication protocol detail with your business logic code. You can use it to build the backend microservices easier. Support TCPSocket, WebSocket and RabbitMQ protocol. You can also implement the IRemoteHost interface and register it into the Middle.Service module as an extension module for this middleware framework. Have a nice day... :) GitLab Repository: https://gitlab.com/ponylin1985/zayniframework

ZayniFramework.Middle.Service.Client

The Middle.Service.Client is the client SDK for Middle.Service module. You can use it to connect, send RPC request or publish message to the server side's service host very easy. Support TCPSocket, WebSocket and RabbitMQ protocol. GitLab Repository: https://gitlab.com/ponylin1985/zayniframework

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.142 255 3/19/2024
8.0.141 552 1/4/2024
8.0.140 689 12/17/2023
6.0.138 359 3/19/2024
6.0.137 1,189 9/20/2023
6.0.136 1,073 9/14/2023
6.0.135 1,159 9/10/2023
6.0.134 1,342 7/12/2023
6.0.133 1,376 7/10/2023
6.0.132 1,367 7/7/2023
6.0.131 1,410 6/19/2023
6.0.130 1,421 6/19/2023
6.0.129 13,546 7/2/2022
6.0.128 3,744 1/16/2022
6.0.127 3,710 1/15/2022
6.0.126 3,630 1/15/2022
6.0.125 2,313 1/8/2022
6.0.125-hotfix1 1,288 1/8/2022
6.0.124 2,312 1/7/2022
6.0.123 2,699 11/14/2021
5.0.129 5,013 7/2/2022
5.0.128 5,098 1/16/2022
5.0.125 2,850 1/8/2022
5.0.124 2,761 1/7/2022
5.0.123 3,351 11/14/2021
5.0.122 3,724 10/11/2021
5.0.121 3,833 5/1/2021
3.1.137 1,738 9/20/2023
3.1.136 1,588 9/14/2023
3.1.135 1,787 9/10/2023
3.1.134 2,118 7/12/2023
3.1.133 2,135 7/11/2023
3.1.132 2,080 7/8/2023
3.1.131 2,277 6/19/2023
3.1.130 3,967 2/1/2023
3.1.129 7,284 7/2/2022
3.1.128 7,171 1/16/2022
3.1.125 3,932 1/8/2022
3.1.124 3,889 1/7/2022
3.1.123 4,781 11/14/2021
3.1.122 5,561 10/11/2021
3.1.121 5,700 5/1/2021
2.31.120 3,804 3/14/2021
2.30.115 7,333 3/6/2021
2.30.114 3,663 3/6/2021
2.20.101 4,199 3/1/2021
2.19.3 3,810 2/11/2021
2.19.2 16,384 2/6/2021
2.19.1 4,266 1/6/2021
2.19.0 4,328 1/1/2021
2.18.3 6,915 12/27/2020
2.18.2 8,096 8/29/2020
2.18.1 11,158 8/26/2020
2.18.0 7,323 8/20/2020
2.17.135 7,285 8/19/2020
2.17.134 9,058 7/28/2020
2.17.133 7,207 7/27/2020
2.17.132 7,289 7/18/2020
2.17.131 7,414 7/11/2020
2.16.130 7,099 6/13/2020
2.15.128 7,262 6/3/2020
2.15.127 7,316 5/31/2020
2.15.126 8,357 4/30/2020
2.14.122 6,986 4/13/2020
2.13.100 7,186 3/12/2020
2.12.51 7,147 2/18/2020
2.11.50 14,022 2/10/2020
2.10.44 15,725 1/30/2020
2.9.43 15,429 1/11/2020
2.8.42 15,714 1/10/2020
2.8.41 15,521 1/5/2020
2.7.40 15,383 1/2/2020
2.7.39 15,483 1/2/2020
2.7.38 16,018 1/1/2020
2.6.37 15,747 12/23/2019
2.6.35 15,725 12/4/2019
2.6.1 15,512 12/2/2019
2.6.0 15,538 11/28/2019
2.5.2 16,213 11/26/2019
2.5.1 15,505 11/12/2019
2.5.0 15,307 11/9/2019
2.4.3 13,728 10/16/2019
2.4.2 12,785 10/16/2019
2.4.1 13,055 9/20/2019
2.3.113 3,630 3/6/2021
2.3.112 3,731 3/6/2021
2.3.28 13,319 9/19/2019
2.3.27 13,313 8/30/2019
2.3.26 13,646 8/20/2019
2.3.25 13,075 8/12/2019
2.3.22 13,605 7/31/2019
2.3.21 13,689 7/20/2019
2.3.20 12,716 6/22/2019
2.3.19 13,313 6/14/2019
2.3.18 13,846 6/13/2019
2.3.17 13,262 6/13/2019
2.3.15 13,100 6/8/2019
2.3.14 13,184 6/8/2019
2.3.13 13,583 5/30/2019
2.3.12 7,208 5/24/2019
2.3.11 7,108 5/24/2019
2.3.10 7,338 5/21/2019
2.3.9 7,115 5/9/2019
2.3.8 7,445 5/8/2019
2.3.7 7,358 4/30/2019
2.3.6 7,397 4/23/2019
2.3.5 7,374 4/19/2019
2.3.4 7,071 4/18/2019
2.3.3 7,045 4/17/2019
2.3.2 7,168 4/6/2019
2.3.1 7,223 12/15/2018
2.3.0 7,029 12/7/2018
2.2.7 4,388 11/26/2018
2.2.6 7,567 11/25/2018
2.2.1 17,185 11/17/2018
2.2.0 5,998 11/16/2018
2.1.0 6,119 11/15/2018
2.0.1 4,921 11/6/2018
2.0.0 5,164 11/4/2018