12345678910111213141516171819202122232425 |
- 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.MySql
- {
- class DbContextServiceProvider : IDbContextServiceProvider
- {
- public DbContextServiceProvider()
- {
- }
-
- public IDbExpressionTranslator CreateDbExpressionTranslator()
- {
- return DbExpressionTranslator.Instance;
- }
- }
- }
|