ORM_FlexFlow 9.4.2
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
<PackageReference Include="ORM_FlexFlow" Version="9.4.2" />
<PackageVersion Include="ORM_FlexFlow" Version="9.4.2" />
<PackageReference Include="ORM_FlexFlow" />
paket add ORM_FlexFlow --version 9.4.2
#r "nuget: ORM_FlexFlow, 9.4.2"
#:package ORM_FlexFlow@9.4.2
#addin nuget:?package=ORM_FlexFlow&version=9.4.2
#tool nuget:?package=ORM_FlexFlow&version=9.4.2
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 | 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
- 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.7 | 108 | 2/18/2026 | |
| 9.5.5 | 108 | 2/13/2026 | |
| 9.5.4 | 98 | 2/12/2026 | |
| 9.5.3 | 102 | 2/12/2026 | |
| 9.5.2 | 106 | 2/12/2026 | |
| 9.5.1 | 104 | 2/12/2026 | |
| 9.5.0 | 101 | 2/12/2026 | |
| 9.4.2 | 128 | 2/6/2026 | |
| 9.4.1 | 131 | 2/6/2026 | |
| 9.4.0 | 101 | 2/6/2026 | |
| 9.3.9 | 125 | 2/4/2026 | |
| 9.3.8 | 106 | 2/4/2026 | |
| 9.3.7 | 137 | 2/4/2026 | |
| 9.3.6 | 117 | 1/28/2026 | |
| 9.3.5 | 115 | 1/26/2026 | |
| 9.3.4 | 111 | 1/26/2026 | |
| 9.3.2 | 105 | 1/23/2026 | |
| 9.3.1 | 113 | 1/23/2026 | |
| 9.3.0 | 120 | 1/22/2026 | |
| 9.2.9 | 106 | 1/22/2026 |