SQL Extension
An extension of SQL Style of Database, SQL Server, PostgreSQL, SQLite & MySQL
Introduction
This Extension library uses the RepoDB as a primary Database Access, on top this an extension method has been added to avoid repeated code, which is easy for development team to focus on the core operation.
Install-Package FC.Extension.SQL
public class Person
{
public int Id { get; set; }
public string Name { get; set; }
public string Email { get; set; }
}
A Main Method which invokes all the command
public static class Program
{
public static async Task<int> Main() =>
await new CliApplicationBuilder()
.AddCommandsFromThisAssembly()
.Build()
.RunAsync();
}
Last updated
Was this helpful?