This is a migrated thread and some comments may be shown as answers.

Sql tables and columns description

7 Answers 74 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Filipe Peixinho
Top achievements
Rank 1
Filipe Peixinho asked on 09 Jul 2009, 05:26 PM
Greetings.

I would like to know if is possible and if there is a way of retrieving sql tables and columns description from database in a Reverse Mapping scenario and/or generate in the Database  those descriptions in a Forward MApping scenario.

Thanks

7 Answers, 1 is accepted

Sort by
0
Peter Brunner
Telerik team
answered on 10 Jul 2009, 08:12 AM
Hello Filipe,

Telerik OpenAccess ORM supports both ways.

Our blog post Model first or Schema First provides a good introduction into this and provides further links to other resources.

Regards,
Peter Brunner
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Filipe Peixinho
Top achievements
Rank 1
answered on 10 Jul 2009, 10:47 AM
Greetings.

I'm not able to find any information on the link you've provided that is related to my question.
I think i haven't made myself clear.

There's a link below to complete my previous question:
http://files.getdropbox.com/u/479032/TableDescription.jpg
0
Dimitar Kapitanov
Telerik team
answered on 10 Jul 2009, 11:34 AM
Hi Filipe Peixinho,
We have it already in our TODO list as an enhancement to our runtime DLL capabilities (you can find more about artificial fields and generic data access in our documentation http://www.telerik.com/help/openaccess-orm/openaccess-tasks-howto-use-artificial-fields.html and http://www.telerik.com/help/openaccess-orm/generic-data-access-overview.html). While we are unable to say when exactly it will make it inside the product I believe it will be lately for Q1 2010. Hope that helps.

Regards,
Dimitar Kapitanov
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Dimitar Kapitanov
Telerik team
answered on 10 Jul 2009, 11:35 AM
Hi Filipe Peixinho,
We have it already in our TODO list as an enhancement to our runtime DLL capabilities (you can find more about artificial fields and generic data access in our documentation http://www.telerik.com/help/openaccess-orm/openaccess-tasks-howto-use-artificial-fields.html and http://www.telerik.com/help/openaccess-orm/generic-data-access-overview.html). While we are unable to say when exactly it will make it inside the product I believe it will be lately for Q1 2010. Hope that helps.

Regards,
Dimitar Kapitanov
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Simsonic
Top achievements
Rank 1
answered on 10 Jul 2009, 01:51 PM
Hi there

This function would be verry useful. Its quite annoying to write the description in the database AND in the classes. So i hope you can implement this function!

Regards,
Simon Wermuth
0
Allen
Top achievements
Rank 1
answered on 06 Jan 2015, 11:33 AM
You misunderstand his meaning.
We have describing each table in your database table design, as well as the summary information for each field.
We hope to ORM these description information can be retrieved from the database and mapped in the entity class to describe writing entity classes as text files.
Just like this:

private int _attrId;
[System.ComponentModel.DataAnnotations.Required()]
/// <summary>
/// This is a Attribute Id
/// </summary>
public virtual int AttrId
{
    get
    {
        return this._attrId;
    }
    set
    {
        if(this._attrId != value)
        {
            this.OnPropertyChanging("AttrId");
            this._attrId = value;
            this.OnPropertyChanged("AttrId");
        }
    }
}
0
Viktor Zhivkov
Telerik team
answered on 09 Jan 2015, 12:41 PM
Hi Allen,

You are welcome to post your feature suggestions in our Ideas and Feedback portal.
There other clients will be able to see your suggestion, comment and vote for it if they want to support it.

Regards,
Viktor Zhivkov
Telerik
 
OpenAccess ORM is now Telerik Data Access. For more information on the new names, please, check out the Telerik Product Map.
 
Tags
General Discussions
Asked by
Filipe Peixinho
Top achievements
Rank 1
Answers by
Peter Brunner
Telerik team
Filipe Peixinho
Top achievements
Rank 1
Dimitar Kapitanov
Telerik team
Simsonic
Top achievements
Rank 1
Allen
Top achievements
Rank 1
Viktor Zhivkov
Telerik team
Share this question
or