gpt4 book ai didi

c# - 在 LINQ to SQL 中查找或创建对象的通用方法?

转载 作者:行者123 更新时间:2023-11-30 15:12:45 25 4
gpt4 key购买 nike

经常在我的LINQ to SQL代码,我需要“查找或创建”这样的实体:

var invoiceDb = ctx.Invoices.FirstOrDefault(a => a.InvoicerId == InvoicerId &&
a.Number == invoiceNumber);
if (invoiceDb == null)
{
invoiceDb = new Invoice();
invoiceDb.Number = invoiceNumber;
ctx.Invoices.InsertOnSubmit(invoiceDb);
}

我希望将其变成通用方法...有什么好主意吗?

最佳答案

我想出了这些似乎对我很有效的扩展方法。

    public static T FindOrCreate<T>(this Table<T> table, Func<T, bool> find, Action<T> create) where T : class, new()
{
T val = table.FirstOrDefault(find);
if (val == null)
{
val = new T();
create(val);
table.InsertOnSubmit(val);
}
return val;
}

public static T FindOrCreate<T>(this Table<T> table, Func<T, bool> find) where T : class, new()
{
return FindOrCreate(table, find, a => { });
}

它是这样使用的:

    var invoiceDb = ctx.Invoices.FindOrCreate(a => a.InvoicerId == InvoicerId &&
a.Number == invoiceNumber);
invoiceDb.Number = invoiceNumber;

或者

    var invoiceDb = ctx.Invoices.FindOrCreate(a => a.InvoicerId == InvoicerId &&
a.Number == invoiceNumber,
a => a.Number = invoiceNumber);

关于c# - 在 LINQ to SQL 中查找或创建对象的通用方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/786890/

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