ISqlExecutor.SelectLazy Method
.NET Standard 2.x
Executes the SQL SELECT statement and returns an ILazyQueryable<TModel> object that can be used to load the result set lazily.
Namespace: SnapObjects.Data
Assembly: SnapObjects.Data.dll
Overloads
Method | Description |
---|---|
SelectLazy<TModel>(string sqlText, params object[] parameters) | Executes the SQL SELECT statement and returns an ILazyQueryable<TModel> object that can be used to load the result set lazily. |
SelectLazy<TModel>(ISqlQueryBuilder queryBuilder, params object[] parameters) | Executes the SQL SELECT statement generated by an ISqlQueryBuilder object and returns an ILazyQueryable<TModel> object that can be used to load the result set lazily. |