假设我有以下课程:
public class Item
{
[Key]
public int itemID {get; set;}
public int typeID {get; set;}
}
我知道在数据库中查找记录通常是通过主键,例如
Item item = db.Item.Find(id);
如何通过另一列找到记录?即在哪里找到所有记录typeID = 1
?
假设我有以下课程:
public class Item
{
[Key]
public int itemID {get; set;}
public int typeID {get; set;}
}
我知道在数据库中查找记录通常是通过主键,例如
Item item = db.Item.Find(id);
如何通过另一列找到记录?即在哪里找到所有记录typeID = 1
?