XSD files provide us the schema of our database. Many great features from VS in ado.net is come from the custom tools called xsd.exe
XSD.exe provide us an easy mechanism to mapping the database into xml schema.
There are another custom tools that help us alot in object generation from data source. this tool called XSDobjgen this provide us an easy mechanism to mapping database schema into an object (class)
And furthermore Visual STudio 2005 Standard or higher can do both, plus add a loosely coupling with ADO.NET (it's generate derived class for our datasource to manipulate tha data such as dataadapter, dataset and soon)
Based on this knowledge i started tiny application called DALCG, this create a class for your underlying database. You can get more info in this site
Developer need refreshing sometime and might be playing a game like Need For Speed, Far Cry or Quake 4 (write your fav game). Below is my activity when start the game
1. I start my Riva tuner to optimize the performance
2. Close unneeded services (sql server, ntegration services, bla bla, antivirus)
I'm create application to improve gaming experiences called IMGAMER. In this first release, IMGAMER will help you release additional resources. The basic idea form this app is come from System.Doagnostics namespace. This namespace provide us high level API to know process and services to see the process in your local pc just called this
System.Diagnostics.Process[] processList;
processList = System.Diagnostics.Process.GetProcesses();
alProcess.Add(processList
.Id); // added the processid into ArrayList
to see the services run in your local pc i can use this
System.ServiceProcess.ServiceController[] services;
services = System.ServiceProcess.ServiceController.GetServices();
alservices.Add(services
.ServiceName);// added the name into arraylist
Yeh it's fun using System.Diagnostics namespace
Happy Fasting and Happy Holiday
Best Regards
Ridi Ferdiana