ORM_FlexFlow 9.5.3
See the version list below for details.
dotnet add package ORM_FlexFlow --version 9.5.3
NuGet\Install-Package ORM_FlexFlow -Version 9.5.3
<PackageReference Include="ORM_FlexFlow" Version="9.5.3" />
<PackageVersion Include="ORM_FlexFlow" Version="9.5.3" />
<PackageReference Include="ORM_FlexFlow" />
paket add ORM_FlexFlow --version 9.5.3
#r "nuget: ORM_FlexFlow, 9.5.3"
#:package ORM_FlexFlow@9.5.3
#addin nuget:?package=ORM_FlexFlow&version=9.5.3
#tool nuget:?package=ORM_FlexFlow&version=9.5.3
ORM-FlexFlow
DLL Responsavel pelas conexoes Banco PostegreSQL
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
dotnet ef dbcontext scaffold "Host=;Port=;Database=;Username=****;Password=*********" Npgsql.EntityFrameworkCore.PostgreSQL -o Diretorio -c Context --schema nome_schema_ --force
dotnet ef migrations add InitialWebitMigration --context ORM_FlexFlow.Broker.Context -o Migrations/Broker dotnet ef migrations add InitialWebitMigration --context ORM_FlexFlow.Webit.Context -o Migrations/Webit
dotnet ef database update --context ORM_FlexFlow.Broker.Context --project ORM_FlexFlow.Broker --startup-project WebApi --connection "Host=XXXX;Port=5432;Database=XXXX;Username=XXXX;Password=XXXXX"
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.AspNetCore.Http.Abstractions (>= 2.3.9)
- Npgsql (>= 9.0.3)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 9.0.4)
- Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite (>= 9.0.4)
- Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime (>= 9.0.4)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on ORM_FlexFlow:
| Package | Downloads |
|---|---|
|
ErrorSolution
Biblioteca para Conexao com Banco de dados |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 9.5.13 | 58 | 3/27/2026 | |
| 9.5.12 | 129 | 3/20/2026 | |
| 9.5.11 | 128 | 3/10/2026 | |
| 9.5.10 | 98 | 3/10/2026 | |
| 9.5.9 | 97 | 3/10/2026 | |
| 9.5.8 | 100 | 3/9/2026 | |
| 9.5.7 | 149 | 2/18/2026 | |
| 9.5.5 | 114 | 2/13/2026 | |
| 9.5.4 | 102 | 2/12/2026 | |
| 9.5.3 | 107 | 2/12/2026 | |
| 9.5.2 | 111 | 2/12/2026 | |
| 9.5.1 | 108 | 2/12/2026 | |
| 9.5.0 | 105 | 2/12/2026 | |
| 9.4.2 | 134 | 2/6/2026 | |
| 9.4.1 | 136 | 2/6/2026 | |
| 9.4.0 | 104 | 2/6/2026 | |
| 9.3.9 | 129 | 2/4/2026 | |
| 9.3.8 | 109 | 2/4/2026 | |
| 9.3.7 | 159 | 2/4/2026 | |
| 9.3.6 | 121 | 1/28/2026 |