DbContextServiceProvider.cs 483 B

123456789101112131415161718192021222324
  1. using Ant.Core.Visitors;
  2. using Ant.Infrastructure;
  3. using Ant.Query;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Data;
  7. using System.Linq;
  8. using System.Text;
  9. namespace Ant.SQLite
  10. {
  11. class DbContextServiceProvider : IDbContextServiceProvider
  12. {
  13. public DbContextServiceProvider()
  14. {
  15. }
  16. public IDbExpressionTranslator CreateDbExpressionTranslator()
  17. {
  18. return DbExpressionTranslator.Instance;
  19. }
  20. }
  21. }