Click here to Skip to main content
15,896,606 members
Articles / Programming Languages / SQL
Article

Dotnet eXtended framework

Rate me:
Please Sign up or sign in to vote.
2.00/5 (7 votes)
19 Jul 20044 min read 41.9K   624   24   5
Extend the .NET framework power with DotNetX - free libraries that allow you to generate code, cache database objects, etc.

Introduction

DotNetX (DotNet eXtended framework) is a group of libraries that helps common tasks on software developing. This framework includes ways of dynamically managing database cache or connecting to different data providers without changing your code, as well as other day to day tasks.

The packages

DotNetX.Configuration

This namespace includes a AppSettings helper class and a CommandLineArguments helper class.

DotNetX.Diagnostics

It includes a Trace class that encapsulates System.Diagnostics.Trace and also web tracing. It also includes IPerformanceTest interface that should be implemented by performance tests (this feature will be released in the next build).

DotNetX.Reflection

It includes reflection helper classes. At this moment, only an Assembly class is provided. Future builds will include more functionality.

DotNetX.RemotablePlugin

This is the most important feature of the framework. The framework created an evolution of the factory pattern to what we call Remotable Plugin Pattern (RPP - sorry.. but giving names is not one of my qualities...). The Remotable Plugin Pattern allows the final developer to customize the implementation and also its host model, like, for example, to host the object on a remote machine using remoting.

Please note that this is a very immature pattern and some stabilizing should be made before fully using this on production environments. One of the issues to care is security since there isn't any authentication between the consumer and the implementation.

This namespace includes FactoryBase, from which RPP objects should derive.

DotNetX.Caching

It includes a cache factory based on configuration settings as well as two implementations of ICacheProvider, like WebStorage that simply uses the HttpRuntime cache, and WeakReferenceWebStorage that inherits WebStorage but uses a weak reference to the object so GC can collect the object if resources are needed.

The cache factory class (CacheFactory) derives from the Remotable Plugin Pattern (RPP), allowing, for example, to host the cache on another machine using .NET Remoting, or even sharing cache between different applications, using a common repository.

DotNetX.Context

It includes context functionalities, encapsulating HttpContext and call context. It also uses a factory so you can customize your final implementation, and also respects RPP.

DotNetX.Security.Cryptography

It includes a Symmetric factory class implementing RPP. It also includes a Symmetric base class from which symmetric algorithm implementations should derive. This namespace also includes some known symmetric algorithm implementations.

DotNetX.Text

Text manipulation classes.

DotNetX.Data

This namespace includes a class (CommandHelper) that helps to execute commands against a database. One of the main features of these classes is the facto of being completely independent of the data provider, since it only knows IDb interfaces, and the final implementation can also be configured in app.config. This means that you can connect to the database using the best data provider and at the same time have your code completely independent of it, by simply consuming this independent class. On another way, if you need to directly consume IDb objects like IDbConnection or IDbCommand, a factory is provided in ProviderFactory class, meaning that your code continues to be independent.

This namespace also includes a very important object called ConnectionContext that holds a connection context to execute database commands. This object can be used to start transactions and pass transactions between components.

DotNetX.TableReflection

Table reflection is a pattern where you create your data access components reflecting your database. This pattern allows the powerful fact of only going to the database when necessary, because all the calls to the same table are done through a single object, and that object can control when to expire or use cache instead of going to the database. Further details about this functionality will be released in future documentation and builds, since this functionality can be more powerful with code generation being released in the next build. If you want to know more before the documentation, you can take a look at nUnit projects in the source code, where some examples are made.

Please note that to use this pattern you have to derive from EntityBase and document your class using the attributes in Attributes namespace.

A bind helper class is also available allowing user interface to be dynamically generated when using IEntity classes.

Final notes

This is the first release of DotNetX, and so please understand that some immature code may appear.

The next release will include code generation libraries and tools and the ability to write your own code generation pattern.

For further details of latest builds, please visit http://www.dotnetx.org/ or http://workspaces.gotdotnet.com/dotnetx.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
Hugo started his career programming Summer87 and DBase systems, 9 years ago.
He adopted .NET as his favourite platform and mantains an opensource project at www.dotnetx.org.

Actually, he's a lead architect at a finantial company in Portugal, and keeps his skills and interests in Service and Messaging oriented solutions, as well as rapid development enviroments.

Comments and Discussions

 
QuestionCan't find any example on this framework. How to start using it? Pin
ukfam20-Jun-05 4:06
ukfam20-Jun-05 4:06 
QuestionWhy use an msi installer? Pin
Brandon Haase21-Jul-04 11:17
Brandon Haase21-Jul-04 11:17 
AnswerRe: Why use an msi installer? Pin
Hugo Pais Batista21-Jul-04 11:38
Hugo Pais Batista21-Jul-04 11:38 
GeneralRe: Why use an msi installer? Pin
Brandon Haase21-Jul-04 13:06
Brandon Haase21-Jul-04 13:06 
GeneralRe: Why use an msi installer? Pin
Hugo Pais Batista22-Jul-04 9:19
Hugo Pais Batista22-Jul-04 9:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.