我可以将EntityCollection <class>:LINQ扩展为SQL </class>

时间:2010-01-08 05:45:26

标签: c# .net linq-to-sql partial-classes

我可以扩展或使用部分类来添加更多功能 EntityCollection&LT;类&GT;

例如

这是从LINQ到SQL的自动生成的分类

customer.Orders

我希望能够做到

customer.Orders.FindByOrderID(的orderID)

但订单是EntityCollection&lt;订单&gt;

我可以将它作为部分类或扩展它,就像我只能使用Order类一样吗?

1 个答案:

答案 0 :(得分:-1)

是的,我可以

public static class OrderExtension
{
    public static Order FindByOrderID(this EntityCollection<Order> orders, String orderID)
    {