gpt4 book ai didi

c# - 大量代码重复的问题

转载 作者:太空狗 更新时间:2023-10-29 21:57:37 26 4
gpt4 key购买 nike

我有很多方法在很大程度上遵循相同的算法,理想情况下我希望能够调用通用方法来消除大量代码重复。

我有很多类似下面的方法,我最希望能够调用 Save<SQLiteLocation>(itemToSave);但我遇到了很多麻烦,因为这些方法 SQLiteConnection.Find<T>不会接受像泛型中的 T 这样的抽象数据类型。

有什么办法可以解决这个问题,如果我能解决这个问题,我将节省多达 150 行代码

这是我的代码:

    public bool SaveLocation(ILocation location, ref int primaryKey)
{
var dbConn = new SQLiteConnection (dbPath);

SQLiteLocation itemToSave = new SQLiteLocation ();
itemToSave.LocationName = location.LocationName;
itemToSave.Latitude = location.Latitude;
itemToSave.Longitude = location.Longitude;
itemToSave.PrimaryKey = location.PrimaryKey;

----------------------------------------------------------------------------------------

SQLiteLocation storedLocation = dbConn.Find<SQLiteLocation>
(x => x.PrimaryKey == location.PrimaryKey);

if (storedLocation != null)
{
dbConn.Update(itemToSave);
return true;
}

else if (storedLocation == null)
{
dbConn.Insert(itemToSave);
primaryKey = itemToSave.PrimaryKey;
return true;
}
return false;
}

这里是另一种方法,看看虚线下方的两种方法中的代码是如何基本相同的

    public bool SaveInvitation(IInvitation invitation, ref int primaryKey)
{
var dbConn = new SQLiteConnection(dbPath);

SQLiteInvitation itemToSave = new SQLiteInvitation ();
itemToSave.GroupName = invitation.GroupName;
itemToSave.InviterName = invitation.InviterName;
itemToSave.ParseID = invitation.ParseID;
itemToSave.GroupParseID = invitation.GroupParseID;
itemToSave.PrimaryKey = invitation.PrimaryKey;

---------------------------------------------------------------------------------------

SQLiteInvitation storedInvitation = dbConn.Find<SQLiteInvitation>
(x => x.PrimaryKey == invitation.PrimaryKey);

if (storedInvitation != null)
{
dbConn.Update(itemToSave);
return true;
}
else if (storedInvitation == null)
{
dbConn.Insert(itemToSave);
primaryKey = itemToSave.PrimaryKey;
return true;
}
return false;
}

最佳答案

难道你不能做这样的事情:注意:ICommonInterface 是您想要用作 T 的任何允许类之间的任何公共(public)项。最好查看您的代码、公开 PrimaryKey 属性的接口(interface)或类。

public bool SaveItem<T>(T item, ref int primaryKey) where T : ICommonInterface, new()
{
var dbConn = new SQLiteConnection(dbPath);


T storedItem = dbConn.Find<T>(x => x.PrimaryKey == item.PrimaryKey);

if (storedItem != null)
{
dbConn.Update(item);
return true;
}
else if (storedItem == null)
{
dbConn.Insert(item);
primaryKey = item.PrimaryKey;
return true;
}
return false;
}

编辑:向方法中添加了 new() 约束。

关于c# - 大量代码重复的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27302774/

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