我可以扩展或使用部分类来添加更多功能 EntityCollection<类>
例如
这是从LINQ到SQL的自动生成的分类
customer.Orders
我希望能够做到
customer.Orders.FindByOrderID(的orderID)
但订单是EntityCollection<订单>
我可以将它作为部分类或扩展它,就像我只能使用Order类一样吗?
答案 0 :(得分:-1)
是的,我可以
public static class OrderExtension
{
public static Order FindByOrderID(this EntityCollection<Order> orders, String orderID)
{