Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi
Could you please help us to edit display custom table content.
Hi Abdullah,
Do you want to display data from custom table in the umbraco admin ?
Thanks
You can use ApplicationContext.Current.DatabaseContext.Database instance. It has all what you need to work with tables.
I want to display all the entries from a table in grid view to display and edit.
It's code for getting entries from the db :
var listOfEntries = db.Fetch<your custom class with data fields>(new Sql().Select("*").From("your table name"));
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Edit disyplay custom table data
Hi
Could you please help us to edit display custom table content.
Hi Abdullah,
Do you want to display data from custom table in the umbraco admin ?
Thanks
You can use ApplicationContext.Current.DatabaseContext.Database instance. It has all what you need to work with tables.
Thanks
I want to display all the entries from a table in grid view to display and edit.
It's code for getting entries from the db :
is working on a reply...