123456789101112131415161718192021222324 |
- using Ant.Core.Visitors;
- using Ant.Infrastructure;
- using Ant.Query;
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Text;
- namespace Ant.SQLite
- {
- class DbContextServiceProvider : IDbContextServiceProvider
- {
- public DbContextServiceProvider()
- {
- }
- public IDbExpressionTranslator CreateDbExpressionTranslator()
- {
- return DbExpressionTranslator.Instance;
- }
- }
- }
|