假设我有一个customer
使用北风数据库的实体。
如果我GetCustomerByID
在partial class customer
. 我可以通过使用Linq
查询来执行此功能,例如
Dim q = From t in db.Customers where t.GetCustomerByID(my_parameter) Select T
如果我在partial class dx_northwindDataContext
. 我可以使用以下方法执行此功能:
Dim result = db.GetCustomerByID(my_parameter)
因为我正在为我的数据库创建数据访问层,并且没有将我的所有函数都暴露给我的所有实体给db
变量。我正在寻找一种调用我的函数的方法,例如:
Dim result = db.Customers.GetCustomerByID(my_parameter)
有没有办法做到这一点?