DBS-ORM.READSOFT
9.1.5
dotnet add package DBS-ORM.READSOFT --version 9.1.5
NuGet\Install-Package DBS-ORM.READSOFT -Version 9.1.5
<PackageReference Include="DBS-ORM.READSOFT" Version="9.1.5" />
<PackageVersion Include="DBS-ORM.READSOFT" Version="9.1.5" />
<PackageReference Include="DBS-ORM.READSOFT" />
paket add DBS-ORM.READSOFT --version 9.1.5
#r "nuget: DBS-ORM.READSOFT, 9.1.5"
#:package DBS-ORM.READSOFT@9.1.5
#addin nuget:?package=DBS-ORM.READSOFT&version=9.1.5
#tool nuget:?package=DBS-ORM.READSOFT&version=9.1.5
DBS-ORM.API
DLL Responsavel pelas conexoes Mult-Banco aplicando EntityFrameWork e ADO-SQL
Exemplo de comando para scaffoldo dos Bancos existentes:
Observa��o: Cuidados com os nomes das entidade e respeite letras maiusculas e minusculas.
Scaffold-DbContext Sample
Scaffold-DbContext "Coloque aqui sua connection string" Oracle.EntityFrameworkCore -OutputDir .\App\Entity\Readsoft
Oracle Sample
Scaffold-DbContext "User Id=usuario;Password=password;Data Source=host-Banco-dados-oracle:18095/servicename;" Oracle.EntityFrameworkCore -OutputDir .\App\Entity\Readsoft
Postgree Sample
Scaffold-DbContext "Coloque aqui sua connection string" Npgsql.EntityFrameworkCore.PostgreSQL -OutputDir .\App\Entity\QuickComex -Tables endereco, pais, operacao_fiscal
SampleImplementation
// Exemplo de implementa��o de um DbContext e AdoContext
public class SampleImplementation
{
// Exemplo de classe de contexto
public static void Main()
{
// Exemplo de uso do DbContext
using (var context = new Context("ConnectionString"))
{
// Exemplo de uso do AdoContext
var sqlExecutor = new AdoContext(context);
// Exemplo de comando que n�o retorna dados
string updateSql = "UPDATE Tabela SET Coluna = {0} WHERE Condicao = {1}";
int linhasAfetadas = sqlExecutor.ExecuteNonQuery(updateSql, "NovoValor", 1);
Console.WriteLine($"Linhas afetadas: {linhasAfetadas}");
// Exemplo de consulta que retorna dados
string selectSql = "SELECT * FROM PROCESSO WHERE NRPROCESSO = {0}";
var resultado = sqlExecutor.ExecuteQuery<Processlog>(selectSql, "6365908865");
Console.WriteLine($"Resultados: {resultado.Count}");
// Exemplo de consulta que retorna um DataTable
string selectSqlDT = "SELECT * FROM PROCESSO WHERE NRPROCESSO = :p0 and NRCONHECIMENTO = :p1";
var dataTable = sqlExecutor.ExecuteQueryToDataTable(selectSqlDT, "6365908865", "876500323");
// Exibindo resultados
foreach (DataRow row in dataTable.Rows)
{
Console.WriteLine(row["NomeColuna"]); // Substitua "NomeColuna" pelo nome da coluna desejada
}
}
}
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. 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. |
-
net9.0
- Microsoft.EntityFrameworkCore (>= 9.0.9)
- Microsoft.EntityFrameworkCore.Relational (>= 9.0.9)
- Oracle.EntityFrameworkCore (>= 9.23.90)
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 | |
|---|---|---|---|
| 9.1.5 | 168 | 2/2/2026 | |
| 9.1.4 | 109 | 2/2/2026 | |
| 9.1.3 | 133 | 1/30/2026 | |
| 9.1.2 | 131 | 1/28/2026 | |
| 9.1.1 | 236 | 10/2/2025 | |
| 9.1.0 | 247 | 8/25/2025 | |
| 9.0.9 | 296 | 8/13/2025 | |
| 9.0.8 | 305 | 8/12/2025 | |
| 9.0.7 | 309 | 8/12/2025 | |
| 9.0.6 | 388 | 8/7/2025 | |
| 9.0.5 | 328 | 6/6/2025 | |
| 1.0.4 | 350 | 5/14/2025 | |
| 1.0.3 | 668 | 5/14/2025 | |
| 1.0.2 | 564 | 5/8/2025 | |
| 1.0.1 | 324 | 4/29/2025 | |
| 1.0.0 | 314 | 4/29/2025 |