-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSubLightQueryProvider.cs
More file actions
48 lines (42 loc) · 1.55 KB
/
SubLightQueryProvider.cs
File metadata and controls
48 lines (42 loc) · 1.55 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#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 sealed class SubLightQueryProvider
: ISubLightQueryProvider
{
public IQueryable CreateQuery(Expression expression)
{
throw new NotImplementedException();
}
public IQueryable<TElement> CreateQuery<TElement>(Expression expression)
{
throw new NotImplementedException();
}
public object? Execute(Expression expression)
{
throw new NotImplementedException();
}
public TResult Execute<TResult>(Expression expression)
{
throw new NotImplementedException();
}
public TResult Translate<TResult>(Expression expression, IQueryTranslator<TResult> translator) where TResult : IQueryResult
{
throw new NotImplementedException();
}
}