chwmqq
6 posts since
Aug 12, 2009
3.
Re: Looking for software agent Aug 12, 2009 9:28 PM
I should provide more information.
We are Chinese.
I have 3 years work experiences on .Net platform.
My friend has 8 years work experiences .
Our ORM belongs to Object-relational mapping, it is a data access component.
First,we called our orm product "Zding ORM",it took us about 1 year on designing and coding.I believe it is the good ones'.It is a lightweight data access component.So it is simple to study and use. We use reflection technique in .Net ,so when you are writing code it will show smart tips. We have resolved the complex multi-table query which can't be reached by the general ORM, and added some other features in it.
To generate the entities can use entity generator tool. How to use the orm component, just 3 step,1:generate the entities,2:modify the connenctString section in the application's config file,3: add reference of Zding.Framework.DataAccess.dll , beginning with the Facade Object.
Our product site have finished 80%, the url is www.zding.me , you can know more about it.
Sample Code 1: Entity
public interface Student : IDbEntiy
{
/// <summary>
/// stundent id primary key
/// </summary>
decimal N_STUDENT_ID { get;set; }
/// <summary>
/// name
/// </summary>
string VC_STUDENT_NAME { get;set; }
}
Sample Code 2: Query
facade.Query<Order>("A")
.Join<OrderDetail>("B", Fi.F == Fi.F)
.Select();