ORM_FlexFlow 9.4.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package ORM_FlexFlow --version 9.4.2
                    
NuGet\Install-Package ORM_FlexFlow -Version 9.4.2
                    
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="ORM_FlexFlow" Version="9.4.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ORM_FlexFlow" Version="9.4.2" />
                    
Directory.Packages.props
<PackageReference Include="ORM_FlexFlow" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ORM_FlexFlow --version 9.4.2
                    
#r "nuget: ORM_FlexFlow, 9.4.2"
                    
#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.
#:package ORM_FlexFlow@9.4.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ORM_FlexFlow&version=9.4.2
                    
Install as a Cake Addin
#tool nuget:?package=ORM_FlexFlow&version=9.4.2
                    
Install as a Cake Tool

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

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.7 108 2/18/2026
9.5.5 108 2/13/2026 9.5.5 is deprecated because it is no longer maintained and has critical bugs.
9.5.4 98 2/12/2026 9.5.4 is deprecated because it is no longer maintained and has critical bugs.
9.5.3 102 2/12/2026 9.5.3 is deprecated because it is no longer maintained and has critical bugs.
9.5.2 106 2/12/2026 9.5.2 is deprecated because it is no longer maintained and has critical bugs.
9.5.1 104 2/12/2026 9.5.1 is deprecated because it is no longer maintained and has critical bugs.
9.5.0 101 2/12/2026 9.5.0 is deprecated because it is no longer maintained and has critical bugs.
9.4.2 128 2/6/2026 9.4.2 is deprecated because it is no longer maintained and has critical bugs.
9.4.1 131 2/6/2026 9.4.1 is deprecated because it is no longer maintained and has critical bugs.
9.4.0 101 2/6/2026 9.4.0 is deprecated because it is no longer maintained and has critical bugs.
9.3.9 125 2/4/2026 9.3.9 is deprecated because it is no longer maintained and has critical bugs.
9.3.8 106 2/4/2026 9.3.8 is deprecated because it is no longer maintained and has critical bugs.
9.3.7 137 2/4/2026 9.3.7 is deprecated because it is no longer maintained and has critical bugs.
9.3.6 117 1/28/2026 9.3.6 is deprecated because it is no longer maintained and has critical bugs.
9.3.5 115 1/26/2026 9.3.5 is deprecated because it is no longer maintained and has critical bugs.
9.3.4 111 1/26/2026 9.3.4 is deprecated because it is no longer maintained and has critical bugs.
9.3.2 105 1/23/2026 9.3.2 is deprecated because it is no longer maintained and has critical bugs.
9.3.1 113 1/23/2026 9.3.1 is deprecated because it is no longer maintained and has critical bugs.
9.3.0 120 1/22/2026 9.3.0 is deprecated because it is no longer maintained and has critical bugs.
9.2.9 106 1/22/2026 9.2.9 is deprecated because it is no longer maintained and has critical bugs.
Loading failed