避免Linq真实数据库操作
如果我实现此接口:
public interface IProductsRepository
{
IQueryable<Product> Products { get; }
}
... 使用 Linq to SQL
这会产生真正的数据库查询吗?
var x = from p in repositoryInstance.Products where price > 100;
如果是这样,我怎样才能避免调用者执行复杂而缓慢的sql语句?
If I implement this interface:
public interface IProductsRepository
{
IQueryable<Product> Products { get; }
}
... using Linq to SQL
Will this produce real database queries?
var x = from p in repositoryInstance.Products where price > 100;
If so how can I avoid callers from executing complex and slow sql statements?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
LINQ to SQL(和其他 LINQ 提供程序)不允许无效的 SQL 语句。如果可能,编译时错误将阻止代码编译。如果不可能,则会在运行时抛出错误。
LINQ to SQL (and other LINQ providers) will not allow invalid SQL statements. If possible, a compile-time error will prevent the code from compiling. If that's not possible, an error will be thrown at runtime.