gpt4 book ai didi

c# - Insight.Database 列映射到对象

转载 作者:行者123 更新时间:2023-11-30 12:40:56 24 4
gpt4 key购买 nike

我正在使用 Insight.Database作为我们的微型 ORM。我想弄清楚是否有一种方法可以采用以下 POCO 类关联并将单行的结果映射到这些对象中。

public class Rule
{
public int Id { get; set; }
public string Name { get; set; }
public RuleDetail Source { get; set; }
public RuleDetail Destination { get; set; }
}

public class RuleDetail
{
public int Id { get; set; }
public Name { get; set; }
public Date DateTime { get; set; }
// omitted...
}

这是从我们的存储过程返回的列:

Id
Name

// Should map to Source object.
SourceId
SourceName
SourceDateTime

// Should map to Destination object.
DestinationId
DestinationName
DestinationDateTime

最佳答案

这可以通过在查询端进行一些设置来实现。不确定属性是否可行。

var returns = Query.Returns(
new OneToOne<Rule, RuleDetail, RuleDetail>(
callback: (rule, source, destination) => {
rule.Source = source;
rule.Destination = destination;
},
columnOverride: new ColumnOverride[] {
new ColumnOverride<RuleDetail>("SourceId", "Id"),
new ColumnOverride<RuleDetail>("SourceName", "Name"),
new ColumnOverride<RuleDetail>("SourceDateTime", "DateTime"),
new ColumnOverride<RuleDetail>("DestinationId", "Id"),
new ColumnOverride<RuleDetail>("DestinationName", "Name"),
new ColumnOverride<RuleDetail>("DestinationDateTime", "DateTime"),
},
splitColumns: new Dictionary<Type, string>() {
{ typeof(Rule), "Id" },
{ typeof(RuleDetail), "SourceId" },
{ typeof(RuleDetail), "DestinationId" },
}
)
);
return Db.Query(procedure, params, returns);

我不确定是否需要所有这些代码才能使其工作,但它确实显示了 Insight.Database 中的查询功能有多么强大。

关于c# - Insight.Database 列映射到对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40044608/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com