Showing related tags and posts accross the entire site.
-
I have an EntityGridView but needed to display fields from related data and the simlest way was to base the grid on a view. However, you cannot delete from a view and, indeed, there are no methods created by Nettiers to do this. How do I wire up the delete link to a Delete method that will delete from...
-
I have a view based on the following table schema. I also have a view which uses this table. When the View entity is generated, the column INVMatlTypeLkpID is specified to be an integer, rather than a GUID. /********************************************************************************************...
-
I have a Customer object (which is a table) and a NoteView object (which is a view) in my database. I have two custom stored procedures _ Customer_DoSomething and _NoteView_DoSomething. I CAN execute the _Customer_DoSomething proc fine via the CustomerService I CAN NOT execute the _NoteView_DoSomething...
-
Hi! I have a complex query that I had to put in a stored procedure because it is using parameters, and I was wondering whether it was possible to use the stored proc output as datasource? If not, another solution would be to have a less complex query and to generate a view. However, a less complex query...