-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathISubLightQueryProvider.cs
More file actions
27 lines (26 loc) · 1.05 KB
/
ISubLightQueryProvider.cs
File metadata and controls
27 lines (26 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#region Copyright (c) 2025
// RM / Hybrid ORM: Resource Manager / Hybrid ORM
//
// License: Dual-license
// - Free for educational, research, personal, or nonprofit projects that are not directly or indirectly used to generate revenue
// - Commercial use requires a per-service paid license
//
// Disclaimer: Provided "as-is"; no warranty; author not liable for any damages, data loss, or business interruptions.
// Production use must be fully tested and validated within the enterprise environment.
//
// Contributions: All contributions are voluntary and licensed under this project’s dual-license; may be included in commercial releases.
// See CLA.md for Contributor License Agreement.
//
// For commercial licensing or paid support inquiries: Kenneth Carter
#endregion
using SubLight.Query;
using System.Linq.Expressions;
namespace SubLight
{
public interface ISubLightQueryProvider
: IQueryProvider
{
TResult Translate<TResult>(Expression expression, IQueryTranslator<TResult> translator)
where TResult: IQueryResult;
}
}