Showing related tags and posts accross the entire site.
-
Hi, Hope someone can help here. I'm running a scheduled app to process multiple databases at once. It's designed to be multithreading and for the most part it works fine. The problem is that every so often I get the following error when processing one of the databases; System.ApplicationException...
-
Hi, I have a problem with a custom stored procedure. It does not return Dataset anymore (worked fine until now) when I am calling it from the Service of the entity which belongs. Stored Procedure : CREATE PROCEDURE [dbo].[usp_Material_FindMaterial_Like] @Code as nvarchar(50) AS BEGIN SET NOCOUNT ON;...
-
I have a problem with Nettiers version 2.0.1.471 . It's easy to reproduce. 1) Create a table with a column named "colX" 2) Create a Custom Stored Procedure that specify the name of the "Colx" in the order by clause (for example) 3) Generate and everything will be OK 4) Drop de...
-
I've made two changes to a table's column names - changing the Id column to TableNameId. I've got some custom stored procedures that select from this table - so I updated those as well. I regenerated, with no compile errors - but I'm getting a SQL exception with "Invalid field name 'Id'" - the old field...
-
The file Sql[Entity]ProviderBase.generated.cs contains a reference to the stored procedure "dbo.[Table]_Find_Dynamic" under one of the Find() overloads. This stored procedure, however, does not exist in the database (and yes, I set the "IncludeFind" property to true). Is this a bug? Does it intend to...