Interface IDynamicObject
- Namespace
- BootstrapBlazor.Components
- Assembly
- BootstrapBlazor.dll
动态对象接口
public interface IDynamicObject
- Extension Methods
Properties
DynamicObjectPrimaryKey
获得/设置 数据主键
Guid DynamicObjectPrimaryKey { get; set; }
Property Value
Methods
GetValue(string)
通过指定属性名获取属性值方法
object? GetValue(string propertyName)
Parameters
propertyName
string属性名称
Returns
SetValue(string, object?)
通过指定属性名设置属性值方法
void SetValue(string propertyName, object? value)