Rng.KeplerCrud
6.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 Rng.KeplerCrud --version 6.2.1
NuGet\Install-Package Rng.KeplerCrud -Version 6.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="Rng.KeplerCrud" Version="6.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rng.KeplerCrud --version 6.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Rng.KeplerCrud, 6.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 Rng.KeplerCrud as a Cake Addin #addin nuget:?package=Rng.KeplerCrud&version=6.2.1 // Install Rng.KeplerCrud as a Cake Tool #tool nuget:?package=Rng.KeplerCrud&version=6.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Kepler CRUD
You can Perform Crud Operation Using This Library Automaticly
- This is Helpful For Do Crud Operation Automaticlly
- Give A Like To This Repo If you Found Something Helpful
- ✨RNG✨
Requirments
- .net 6.0 or newest
- Currently It Is Supporting For .net 6.0 or later And Working On this To Work With older versions also
- Two Columns Is Required Id And IsDeleted Below Example Of A Table
CREATE TABLE [dbo].[Person](
[Id] [int] IDENTITY(1,1) NOT NULL,
[Name] [varchar](100) NOT NULL,
/****** Column: IsDeleted This Is Used For Soft Delete Because I Have Implemented A Condition In Query ******/
[IsDeleted] [bit] NOT NULL,
CONSTRAINT [PK_Person] PRIMARY KEY CLUSTERED
(
[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[UiPageType] ADD CONSTRAINT [DF_UiPageType_IsDeleted] DEFAULT ((0)) FOR [IsDeleted]
GO
Setup
- Go On Nuget Install This Package
- Then Just Add Connection String In Your AppSettings.json Ex is Given Below
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"ConnectionStrings": {
"Value": "Server=localhost;Database=WFON; User ID=sa;Password=admin;"
},
"AllowedHosts": "*"
}
- Then Go To Project Startup.cs File Just Add These Lines
//First Of all Just Include This Namespace
using KeplerCrud.Connection;
/* This KeplerConnection Will Automaticlly read your
appsettings.json file And Take Connection String */
builder.Services.AddSingleton<IKeplerConnection, KeplerConnection>();
- And Then Add KeplerTable and KeplerColumn In Your Model Like This
//Don't Forget To Include KeplerCrud.Utility Namespace
using KeplerCrud.Utility;
namespace WebApp.Models
{
[KeplerTable("UiPageType")]
public class UserDTO
{
[KeplerColumn("Id")]
public int Id { get; set; }
[KeplerColumn] // If You Don't Use This Attribute Here and put colunmBase Fetch Then You Won't Get This Column Value Or You Can't Save This
public string Name { get; set; }
}
}
- And Where You Want To Call Db To Perform Crud Just Use Like This
//namespace for KeplerRepository
using KeplerCrud.Repostiory
private readonly IKeplerRepository<YourModel> _keplerRepository;
public Constructor(IKeplerRepository<UserDTO> keplerRepository)
{
_keplerRepository = keplerRepository;
}
- before using this _keplerRepository. Methods You have to register this model In Startup with This IKeplerRepostory
builder.Services.AddScoped<IKeplerRepository<YourModel>, KeplerRepository<YourModel>>();
Thats It
Questions
- Q1 Why we You need this
- Ans. This Is Light Weight and Fast To Perform CRUD And Using This you Don't need to write Much Code
- Q2 What is columnBase Bool Parameter
- Ans. If You Pass True in that then it will Only Use those Columns Where you have used KeplerColumn Attribute And Other Columns Will Be Ignored
Thanks
Thanks Myself Raj Narayan Gupta
- I would Like To collaborate With Other Developers💛
- Mail : Rajkumar00999.rk@gmail.com
- Follow Us On Instagram
Reference Where This Is Used
- Visit StroLazer Repository For More Information How To Use
- & Give A Star 💛🌺🙃
License
MIT
Free Software, Hell Yeah!
Mail Me Or Give a messege In Instagram If You Have Any Suggestion / Questions / Issues or Feel Free To Contribute
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Dapper (>= 2.0.123)
- Microsoft.Extensions.Configuration (>= 7.0.0)
- System.Data.SqlClient (>= 4.8.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.