Poco.Sql.NetCore is a convertion of the original Poco.Sql project (https://github.com/developer82/Poco.Sql) to .NET Core.
Poco.Sql.NetCore is avilable via NuGet (https://www.nuget.org/packages/Poco.Sql.NetCore/1.0.0)
Install-Package Poco.Sql.NetCore
Include the Poco.Sql extentions method namespace
using Poco.Sql.NetCore.Extensions;
Generate SQL statements from ANY object
myObject.PocoSql().Select().ToString();
myObject.PocoSql().Insert().ToString();
myObject.PocoSql().Update().ToString();
myObject.PocoSql().Delete().ToString();
It's that simple!
Confgiration can be executed only once in the application lifecycle. Once configured, it doesn't allow changing the configuration later on.
Example configuration:
// PocoSql configuration
Configuration.Initialize(config =>
{
config.PluralizeTableNames();
config.SetStoreProcedurePrefix("stp_");
config.ShowComments();
config.InjectValuesInQueies();
config.SelectFullGraph();
config.AddMap(new EntityMap());
});
Read more about Poco.Sql.NetCore configuration
Poco.Sql.NetCore works out-of-the-box on any .NET class and without the need to configure or map anything. However, there might be cases where we would like to apply mapping on objects - map relationships between objects, map object properties to database fields, ignore properties, set custom table name for object, define stored procedures, and more...
To allow such mapping, Poco.Sql.NetCore has a mapping object that helps you define mappings between your objects and the database.
To create a mapping object, create a new class that inherits from Poco.Sql.NetCore.PocoSqlMapping<T>
public class UserMap : PocoSqlMapping<User>
{
public UserMap()
{
// mapping configuration
}
}
Read more about Poco.Sql.NetCore mappings
To save the time and lines of code in writing these objects, Poco.Sql.NetCore has an helper class that knows how to create an object that's combined of your domain objects, and is specific to SQL statement.
var sql = "insert into Users(FirstName, LastName, DateOfBirth, LuckyNumber, IsRegistered) values(@FirstName, @LastName, @DateOfBirth, @LuckyNumber, @IsRegistered)";
var data = ValuesObject.Create(sql, myUserObject /* , ... */);
Read more about Poco.Sql.NetCore Values Object Creator
I'm also on twitter! follow me @supervill_dev82
The MIT License (MIT)
Copyright (c) 2014-2018 Ophir Oren
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.