The sp and Table use a timestamp data type ...The ENTRoleCapabilityUpdate uses a binary dataType. Are your sp , table and ENTRoleCapabilityUpdate different from this?
ALTER PROCEDURE [dbo].[ENTRoleCapabilityUpdate]
(
@ENTRoleCapabilityId int,
@ENTRoleId int,
@ENTCapabilityId int,
@AccessFlag tinyint,
@UpdateENTUserAccountId int,
@Version timestamp
)
AS
SET NOCOUNT ON
UPDATE ENTRoleCapability
SET ENTRoleId = @ENTRoleId,
ENTCapabilityId = @ENTCapabilityId,
AccessFlag = @AccessFlag,
UpdateDate = GetDate(),
UpdateENTUserAccountId = @UpdateENTUserAccountId
WHERE ENTRoleCapabilityId = @ENTRoleCapabilityId
-- AND Version = @Version
|