var fDesc=new Array();
fDesc[0] = "dotConnect for PostgreSQL is a high-performance ORM enabled data provider for PostgreSQL that builds on ADO.NET technology to present a complete solution for developing PostgreSQL-based database applications. It introduces new approaches for designing application architecture, boosts productivity, and facilitates the development of database applications.
ADO.NET PostgreSQL provider supports a wide range of PostgreSQL-specific features, such as secure SSL connections, PostgreSQL notifications, PostgreSQL bulk data loading, GEOMETRY, PostgreSQL ARRAY types, and others.
Key features:
* PostgreSQL 16 is supported
* Visual Studio 2022 version 17.8 Preview is supported
* .NET 7 compatibility
* Advanced Visual Studio Integration.
* PostgreSQL support: from 7.1 to 13
Visual Studio support: 2008 - 2022
Platforms support:
Full .NET Framework 2.0 - 4.8
.NET 5.0
.NET Core 1.x, 2.x, and 3.0
.NET Compact Framework 2.0 and above
Mono 2.0 and above
* Offers enhanced ORM support with a bundled visual designer for ORM models - Entity Developer. Our PostgreSQL ADO.NET Provider supports the following ORMs: Entity Framework v1 - v6, Entity Framework Core 1.x, 2.x, and 3.1, 5, NHibernate, LinqConnect
You can always find the latest version of the product on the official Devart website.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}