Table of Contents

Interface IDynamicObject

Namespace
BootstrapBlazor.Components
Assembly
BootstrapBlazor.dll

动态对象接口

public interface IDynamicObject
Extension Methods

Properties

DynamicObjectPrimaryKey

获得/设置 数据主键

Guid DynamicObjectPrimaryKey { get; set; }

Property Value

Guid

Methods

GetValue(string)

通过指定属性名获取属性值方法

object? GetValue(string propertyName)

Parameters

propertyName string

属性名称

Returns

object

SetValue(string, object?)

通过指定属性名设置属性值方法

void SetValue(string propertyName, object? value)

Parameters

propertyName string

属性名称

value object

属性值