123456789101112131415161718192021222324252627282930313233343536373839 |
- using Ant.Core;
- using Ant.Core.Visitors;
- using Ant.Data;
- using Ant.DbExpressions;
- using Ant.Descriptors;
- using Ant.Entity;
- using Ant.Exceptions;
- using Ant.Infrastructure;
- using Ant.ORM;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Linq.Expressions;
- using System.Reflection;
- using System.Text;
- namespace Ant.MySql
- {
- public class MySqlContext : DbContext
- {
- DbContextServiceProvider _dbContextServiceProvider;
- /// <summary>
- ///
- /// </summary>
- public MySqlContext()
- {
- this._dbContextServiceProvider = new DbContextServiceProvider(this);
- }
- /// <summary>
- ///
- /// </summary>
- public override IDbContextServiceProvider DbContextServiceProvider
- {
- get { return this._dbContextServiceProvider; }
- }
- }
- }
|