amorphie.core
1.1.56
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 amorphie.core --version 1.1.56
NuGet\Install-Package amorphie.core -Version 1.1.56
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="amorphie.core" Version="1.1.56" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="amorphie.core" Version="1.1.56" />
<PackageReference Include="amorphie.core" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add amorphie.core --version 1.1.56
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: amorphie.core, 1.1.56"
#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.
#:package amorphie.core@1.1.56
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=amorphie.core&version=1.1.56
#tool nuget:?package=amorphie.core&version=1.1.56
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
amorphie.core
Simple tag management service for developers..
Features;
- Response types
- Enum structures
- Basic classes
Response types
// When you want to return object data and message..
public IResponse Result()
{
return new Response
{
Data = "Example object data",
Result = new Result(Status.Success, "Message")
};
}
// When you want to return object data, message and message detail.
public IResponse Result()
{
return new Response
{
Data = "Example object data",
Result = new Result(Status.Success, "Message", "Message detail")
};
}
// To return 1 entity.
public IResponse<Staff> Result()
{
return new Response<Staff>
{
Data = new Staff() { Id=1,Name="Alice"},
Result = new Result(Status.Success, "Listing successful")
};
}
// To list.
public IResponse<List<Staff>> Result()
{
var list = new List<Staff>() { new Staff() { Id = 1, Name = "Tom" }, new Staff() { Id = 1, Name = "Alice" } };
return new Response<List<Staff>>
{
Data = list,
Result = new Result(Status.Success, "Getirme başarılı")
};
}
//Only when you want to return the status and explanation.
public IResponse Result()
{
return new NoDataResponse
{
Result = new Result(Status.Success, "Delete successful")
};
}
Enums
- Status
public enum Status
{
[Description("Used for all successful transactions")]
Success = 1,
[Description("Used for all faulty and warning operations")]
Error = 2,
}
- StatusType
[Flags]
public enum StatusType
{
New = 2,
Active = 4,
InProgress = 8,
Passive = 16,
Completed = 32,
LockedInFlow = 256,
All = New | Active | InProgress | Passive
}
- StatusType
public enum HttpMethodType : byte
{
CONNECT,
DELETE,
GET,
HEAD,
OPTIONS,
POST,
PUT,
TRACE
}
Base Classes
- EntityBase //Base class includes id and other common proporties
- EntityBaseWithOutId //Covers common properties only
- DtoBase //Base class includes id and other common proporties
- DtoEntityBaseWithOutId //Covers common properties only
- Translation //This table can be used directly for the table, table class where the language values are kept.
- EntityBaseLog //Base class for log tables
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- AutoMapper (>= 13.0.1)
- Dapr.Client (>= 1.14.0)
- Elastic.Apm.SerilogEnricher (>= 8.12.3)
- Elastic.CommonSchema.Serilog (>= 8.12.3)
- Elastic.Serilog.Sinks (>= 8.12.3)
- FluentValidation (>= 11.9.0)
- FluentValidation.AspNetCore (>= 11.3.0)
- Microsoft.EntityFrameworkCore (>= 8.0.1)
- Microsoft.Extensions.Http.Polly (>= 8.0.1)
- Newtonsoft.Json (>= 13.0.3)
- NJsonSchema (>= 11.0.2)
- Polly (>= 8.2.1)
- Refit (>= 8.0.0)
- Refit.HttpClientFactory (>= 8.0.0)
- Serilog.AspNetCore (>= 8.0.1)
- Serilog.Enrichers.CorrelationId (>= 3.0.1)
- Serilog.Enrichers.Environment (>= 3.0.0-dev-00806)
- Serilog.Exceptions (>= 8.4.0)
- Serilog.Settings.Configuration (>= 8.0.1-dev-00561)
- Serilog.Sinks.Async (>= 1.5.0)
- Serilog.Sinks.Debug (>= 2.0.0)
- Serilog.Sinks.Elasticsearch (>= 9.0.3)
- Swashbuckle.AspNetCore (>= 6.5.0)
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 |
|---|---|---|
| 1.1.57 | 169 | 2/12/2026 |
| 1.1.56 | 93 | 2/12/2026 |
| 1.1.55 | 247 | 1/13/2026 |
| 1.1.54 | 953 | 7/21/2025 |
| 1.1.53 | 496 | 7/21/2025 |
| 1.1.52 | 183 | 7/18/2025 |
| 1.1.51 | 541 | 2/28/2025 |
| 1.1.50 | 1,354 | 2/18/2025 |
| 1.1.49 | 222 | 2/17/2025 |
| 1.1.48 | 1,073 | 1/21/2025 |
| 1.1.47 | 349 | 1/8/2025 |
| 1.1.46 | 328 | 1/6/2025 |
| 1.1.45 | 457 | 12/27/2024 |
| 1.1.44 | 302 | 12/25/2024 |
| 1.1.43 | 860 | 12/24/2024 |
| 1.1.42 | 310 | 12/18/2024 |
| 1.1.41 | 252 | 12/18/2024 |
| 1.1.40 | 356 | 12/11/2024 |
| 1.1.39 | 421 | 11/26/2024 |
| 1.1.38 | 556 | 11/19/2024 |
Loading failed