-
-
Notifications
You must be signed in to change notification settings - Fork 385
Expand file tree
/
Copy pathCustomDynamicData.cs
More file actions
87 lines (79 loc) · 2.19 KB
/
CustomDynamicData.cs
File metadata and controls
87 lines (79 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License
// See the LICENSE file in the project root for more information.
// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone
using System.Dynamic;
namespace BootstrapBlazor.Server.Data;
/// <summary>
///
/// </summary>
public class CustomDynamicData : System.Dynamic.DynamicObject
{
/// <summary>
/// 获得/设置 固定列
/// </summary>
public string Fix { get; set; } = "";
/// <summary>
/// 存储每列值信息 Key 列名 Value 为列值
/// </summary>
public Dictionary<string, object?> Columns { get; set; }
/// <summary>
///
/// </summary>
/// <param name="fix"></param>
/// <param name="data"></param>
public CustomDynamicData(string fix, Dictionary<string, object?> data)
{
Fix = fix;
Columns = data;
}
/// <summary>
///
/// </summary>
public CustomDynamicData() : this("", []) { }
/// <summary>
/// <inheritdoc/>
/// </summary>
/// <param name="binder"></param>
/// <param name="result"></param>
/// <returns></returns>
public override bool TryGetMember(GetMemberBinder binder, out object? result)
{
if (binder.Name == nameof(Fix))
{
result = Fix;
}
else if (Columns.TryGetValue(binder.Name, out object? value))
{
result = value;
}
else
{
// When property name not found, return empty
result = "";
}
return true;
}
/// <summary>
/// <inheritdoc/>
/// </summary>
/// <param name="binder"></param>
/// <param name="value"></param>
/// <returns></returns>
public override bool TrySetMember(SetMemberBinder binder, object? value)
{
var ret = false;
var v = value?.ToString() ?? string.Empty;
if (binder.Name == nameof(Fix))
{
Fix = v;
ret = true;
}
else if (Columns.ContainsKey(binder.Name))
{
Columns[binder.Name] = v;
ret = true;
}
return ret;
}
}