Getting started with Inetdev Framework Std

Abstracts

This framework provides to the application developers the following functionalities (among others).

  • IoC
  • ORM
  • Diagnostics logging
  • Cryptography.
  • Domain object modeling
  • Data services
  • Common components and models used by most applications

To use this framework just include the packages you need in your project and go.

Packages

It is composed by the following components provided as NuGet packages.

Technical documentation can be found here: Inetdev Framework Std class library.

Core

  • KpokPatagon.InetdevFxStd.Core

    The core component and the root of all other packages.

  • KpokPatagon.InetdevFxStd.Data

    The data component that allows the development of domain model objects, data services, ORM and more, in a database agnostics way, so the code can be used for any database engine.

Data access layer

  • KpokPatagon.InetdevFxStd.Data.MySql

    This package provides components that transparantly allows the developer to store application data in a MySql database.

  • KpokPatagon.InetdevFxStd.Data.Oracle

    This package provides components that transparantly allows the developer to store the application data in an Oracle database.

  • KpokPatagon.InetdevFxStd.Data.SQLite

    This package provides components that transparantly allows the developer to store the application data in a SQLite database.

  • KpokPatagon.InetdevFxStd.Data.SqlServer

    This package provides components that transparantly allows the developer to store the application data in a Microsoft Sql Server database.

Library

  • KpokPatagon.InetdevFxStd.Auditing

    This package provides access and services to generate and process data model modification auditing information.

  • KpokPatagon.InetdevFxStd.CLI

    This package provides common models and services usefull for develop CLI applications.

  • KpokPatagon.InetdevFxStd.Commons

    This package provides common components, domain object models, their data services, a numerator, a parameter store and a property bag service, usefull for many applications.

    The domain object models from this library are backed up by tables which schema can be found here.

  • KpokPatagon.InetdevFxStd.Models

    This packages provides common models usefull for many applications.

  • KpokPatagon.InetdevFxStd.Multitenancy

    Provides components for multi-tenenat applications.

    The domain object models from this library are backed up by tables which schema can be found here.

Web

  • KpokPatagon.InetdevFxStd.Web

    Provides common models and components usefull for many web applications.

  • KpokPatagon.InetdevFxStd.AspNet

    Provides components for building Asp.Net applications that uses Microsoft .NET Framework.

  • KpokPatagon.InetdevFxStd.AspNetCore

    Provides components for building Asp.Net Core applications.

  • KpokPatagon.InetdevFxStd.AspNetCore.Multitenancy

    Provides components for multi-tenant Asp.Net Core applications like model binders, tenant providers and more.

Architecture

You develop an application by creating class libraries that will contain the application business logic, data model objects and data services.

This class library will reference (at a minimum) the core and the data component, this will made the application database agnostic.

Then you will create a web application (or other kind: UWP, Console, etc.) for the user interface and within this (the deployable binaries) you will include the components for the database to use (Oracle or Sql Server, etc.) and use the IoC container to inyect an appropiate set of components according to the actual environment.

What's next

From the home page of this documentation explore the framework topics like configuration, domain object models, data services, ORM, etc. or see the technical documentation.

Top