←Select platform

AddItem Method

Summary

Adds an item (an associate between a user defined class and the corresponding Entity) to the internal Dictionary

Syntax
C#
VB
C++
public static void AddItem( 
   string s, 
   Type t 
) 
Public Shared Sub AddItem( 
   ByVal s As String, 
   ByVal t As System.Type 
) 
public:  
   static void AddItem( 
      String^ s, 
      System::Type^ t 
   ) 

Parameters

s

the entity name

t

typeof of the class to be associated with the entity name

Remarks

When using a custom database with the CSStorageServerManagerDemo_Original.exe, you define a class that derives from class CatalogEntity for each table in your database. You then call AddItem to associate the class with the corresponding entity name. For example, if you have four classes (MyPatient, MyStudy, MySeries, and MyInstance) that correspond to your four custom database tables (Patient, Study, Series, and Instance), then you would call AddItem four times:

RegisteredEntities.Items.Add(RegisteredEntities.PatientEntityName, typeof(MyPatient)); 
RegisteredEntities.Items.Add(RegisteredEntities.StudyEntityName, typeof(MyStudy)); 
RegisteredEntities.Items.Add(RegisteredEntities.SeriesEntityName, typeof(MySeries)); 
RegisteredEntities.Items.Add(RegisteredEntities.InstanceEntityName, typeof(MyInstance)); 

For more information, refer to LEAD Medical Storage Server Custom Database.

Requirements

Target Platforms

Help Version 20.0.2020.3.31
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Medical.Storage.DataAccessLayer Assembly