Gets or sets whether the framework should inject code in each persistent object to improve the performance
of loading and saving of persistent objects. This can also be achieved by marking each persistent object that should
get code injected with the
IDynamicPopulateHelper interface.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Shared Property AutoInjectDynamicPopulateHelper As Boolean |
| Visual Basic (Usage) | Copy Code |
|---|
Dim value As Boolean
TypeMapping.AutoInjectDynamicPopulateHelper = value
value = TypeMapping.AutoInjectDynamicPopulateHelper
|
| C# | |
|---|
public static bool AutoInjectDynamicPopulateHelper {get; set;} |
| Managed Extensions for C++ | |
|---|
public: __property static bool get_AutoInjectDynamicPopulateHelper();
public: __property static void set_AutoInjectDynamicPopulateHelper(
bool value
); |
| C++/CLI | |
|---|
public:
static property bool AutoInjectDynamicPopulateHelper {
bool get();
void set (bool value);
} |
Requirements
Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family
See Also