←Select platform

AddItem Method (RegisteredEntities)

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, 
   System.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)); See <see href="https://www.leadtools.com/help/leadtools/v19m/dh/to/di-topics-leadmedicalstorageservercustomdb.html">LEAD Medical Storage Server Custom Database</see> for more details.

Requirements

Target Platforms

Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
Leadtools.Medical.Storage.DataAccessLayer Assembly
Click or drag to resize