| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- using System;
- using System.Collections.Generic;
- using System.Data.Common;
- using System.Data.Entity;
- using System.Data.Entity.Infrastructure;
- using System.Linq;
- using System.Reflection;
- using System.Text;
- using System.Threading.Tasks;
- using GreenTree.Nachtragsmanagement.Core;
- namespace GreenTree.Nachtragsmanagement.Data
- {
- public class AppendixObjectContext : DbContext, IDbContext
- {
- #region Ctor
- /// <summary>
- /// Initializes a new instance of the AppendixObjectContext-class
- /// </summary>
- /// <param name="nameOrConnectionString"></param>
- public AppendixObjectContext(string nameOrConnectionString)
- : base(nameOrConnectionString)
- {
- //((IObjectContextAdapter) this).ObjectContext.ContextOptions.LazyLoadingEnabled = true;
- }
- #endregion
- #region Utilities
- protected override void OnModelCreating(DbModelBuilder modelBuilder)
- {
- base.OnModelCreating(modelBuilder);
- }
- /// <summary>
- /// Attach an entity to the context or return an already attached entity (if it was already attached)
- /// </summary>
- /// <typeparam name="TEntity">TEntity</typeparam>
- /// <param name="entity">Entity</param>
- /// <returns>Attached entity</returns>
- protected virtual TEntity AttachEntityToContext<TEntity>(TEntity entity) where TEntity : BaseEntity, new()
- {
- //little hack here until Entity Framework really supports stored procedures
- //otherwise, navigation properties of loaded entities are not loaded until an entity is attached to the context
- var alreadyAttached = Set<TEntity>().Local.FirstOrDefault(x => x.Id == entity.Id);
- if (alreadyAttached == null)
- {
- //attach new entity
- Set<TEntity>().Attach(entity);
- return entity;
- }
- //entity is already loaded
- return alreadyAttached;
- }
- #endregion
- #region Methods
- /// <summary>
- /// Create database script
- /// </summary>
- /// <returns>SQL to generate database</returns>
- public string CreateDatabaseScript()
- {
- return ((IObjectContextAdapter)this).ObjectContext.CreateDatabaseScript();
- }
- /// <summary>
- /// Get DbSet
- /// </summary>
- /// <typeparam name="TEntity">Entity type</typeparam>
- /// <returns>DbSet</returns>
- public new IDbSet<TEntity> Set<TEntity>() where TEntity : BaseEntity
- {
- return base.Set<TEntity>();
- }
- /// <summary>
- /// Creates a raw SQL query that will return elements of the given generic type. The type can be any type that has properties that match the names of the columns returned from the query, or can be a simple primitive type. The type does not have to be an entity type. The results of this query are never tracked by the context even if the type of object returned is an entity type.
- /// </summary>
- /// <typeparam name="TElement">The type of object returned by the query.</typeparam>
- /// <param name="sql">The SQL query string.</param>
- /// <param name="parameters">The parameters to apply to the SQL query string.</param>
- /// <returns>Result</returns>
- public IEnumerable<TElement> SqlQuery<TElement>(string sql, params object[] parameters)
- {
- return this.Database.SqlQuery<TElement>(sql, parameters);
- }
- /// <summary>
- /// Executes the given DDL/DML command against the database.
- /// </summary>
- /// <param name="sql">The command string</param>
- /// <param name="doNotEnsureTransaction">false - the transaction creation is not ensured; true - the transaction creation is ensured.</param>
- /// <param name="timeout">Timeout value, in seconds. A null value indicates that the default value of the underlying provider will be used</param>
- /// <param name="parameters">The parameters to apply to the command string.</param>
- /// <returns>The result returned by the database after executing the command.</returns>
- public int ExecuteSqlCommand(string sql, bool doNotEnsureTransaction = false, int? timeout = null, params object[] parameters)
- {
- int? previousTimeout = null;
- if (timeout.HasValue)
- {
- //store previous timeout
- previousTimeout = ((IObjectContextAdapter)this).ObjectContext.CommandTimeout;
- ((IObjectContextAdapter)this).ObjectContext.CommandTimeout = timeout;
- }
- var transactionalBehavior = doNotEnsureTransaction
- ? TransactionalBehavior.DoNotEnsureTransaction
- : TransactionalBehavior.EnsureTransaction;
- var result = this.Database.ExecuteSqlCommand(transactionalBehavior, sql, parameters);
- if (timeout.HasValue)
- {
- //Set previous timeout back
- ((IObjectContextAdapter)this).ObjectContext.CommandTimeout = previousTimeout;
- }
- //return result
- return result;
- }
- #endregion
- }
- }
|