DataVista 1.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package DataVista --version 1.0.3
NuGet\Install-Package DataVista -Version 1.0.3
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="DataVista" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DataVista --version 1.0.3
#r "nuget: DataVista, 1.0.3"
#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.
// Install DataVista as a Cake Addin
#addin nuget:?package=DataVista&version=1.0.3

// Install DataVista as a Cake Tool
#tool nuget:?package=DataVista&version=1.0.3

DataVista

DataVista is a .NET library for:

  • Database interactions - System.Data.SqlClient (ADO.NET)
  • System management utilities - System.Management (WMI)
  • WPF

NuGet package

Prerequisites

Quick Start

1. Add the NuGet package to your project

Install NuGet client tools

2. Setting up the App.config file (for database interactions)

Add an application configuration file to a C# project

Configure this string for what suits your needs.

<?xml  version="1.0"  encoding="utf-8" ?>
<configuration>
 <configSections>
 </configSections>
 <connectionStrings>
 <add  name="MyConnectionString"
  connectionString="Data Source=MyServerName;
 Initial Catalog=MyDataBaseName;
 Integrated Security=True;
 Persist Security Info=False;
 Pooling=True;
 MultipleActiveResultSets=True;
 TrustServerCertificate=True"/>
 </connectionStrings>
</configuration>

This step is optional because you could always use DataVista.Connection.CreateConnectionString().

Or you could use the SqlConnectionStringBuilder Class.

3. Add the namespace using statement to your .cs file.

Namespace
graph LR;
	Core --> ExceptionHandler.cs
	Core --> ExtensionMethods.cs
	Core --> DVCDLL.cs
	
	DVC.dll --C library--- DVCDLL.cs
	
	Database --> Operation.cs
	Database --> DataConverter.cs
	Database --> Connection.cs

	SQL[(Database)] -.-> Connection.cs	

	SystemTools --> Framerate.cs
	SystemTools --> Hardware.cs
	SystemTools --> MemoryUtil.cs
	SystemTools --> WinPath.cs
	SystemTools --> WinProcess.cs

4. To use methods from DataVista.External, add the DLL file(s) (optional)

Step 1

Go into your solution explorer and select "Show All Files" or open the folder local to your solution.

Step 2

Add the DLL file(s) manually, directly to the /bin/Debug/ and */bin/Release/ folders.

DVCexample

OR

Add the DLL anywhere in the project. Open up the DLL file properties and set the "Copy to Output Directory" property to "Copy always" or "Copy if newer".

[!NOTE] Make sure to keep the DLL file(s) up to date.

Docs

[!IMPORTANT] Call the appropriate constructor, DataVista.Database.Connection(SqlConnection sqlConnection) will read the connectionString from the App.config file.

Product Compatible and additional computed target framework versions.
.NET net8.0-windows7.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.0.4 35 6/15/2024
1.0.3 47 5/13/2024
1.0.2 99 5/7/2024
1.0.1 111 5/6/2024
1.0.0 100 5/5/2024