├── .gitignore ├── .nuget ├── NuGet.exe └── NuGet.targets ├── .vs ├── ProjectSettings.json └── VSWorkspaceState.json ├── LICENSE.md ├── NugetPackAll.cmd ├── README.md ├── Yarn.Cache ├── Cache │ ├── CacheExtensions.cs │ ├── CachingStrategy.cs │ ├── DataContext.cs │ ├── EntityCachingStrategy.cs │ ├── GenerationalCachingRepository.cs │ ├── GenerationalEntityCachingRepository.cs │ └── ICacheProvider.cs ├── Properties │ └── AssemblyInfo.cs ├── Yarn.Cache.csproj └── Yarn.Cache.csproj.user ├── Yarn.Cassandra ├── Data │ └── CassandraProvider │ │ ├── DataContext.cs │ │ └── Repository.cs ├── Properties │ └── AssemblyInfo.cs └── Yarn.Cassandra.csproj ├── Yarn.EF ├── App.config ├── Data │ └── EntityFrameworkProvider │ │ ├── ColumnMapping.cs │ │ ├── ContextExtensions.cs │ │ ├── DataContext.cs │ │ ├── DataContextAsync.cs │ │ ├── DataContextExtensions.cs │ │ ├── DataContextOptions.cs │ │ ├── DefaultSequenceNameProvider.cs.cs │ │ ├── FullTextRepository.cs │ │ ├── ISequenceNameProvider.cs │ │ ├── MetaDataProvider.cs │ │ ├── Migrations │ │ └── ScriptGeneratorMigrationInitializer.cs │ │ ├── Repository.cs │ │ ├── RepositoryAsync.cs │ │ ├── RepositoryOptions.cs │ │ └── SqlClient │ │ ├── SqlFullTextProvider.cs │ │ └── SqlSequenceRepositoryAdapter.cs ├── Properties │ └── AssemblyInfo.cs ├── Yarn.EF.csproj └── Yarn.EF.csproj.user ├── Yarn.EFCore ├── Data │ └── EntityFrameworkCoreProvider │ │ ├── ColumnMapping.cs │ │ ├── ContextExtensions.cs │ │ ├── DataContext.cs │ │ ├── DataContextAsync.cs │ │ ├── DataContextExtensions.cs │ │ ├── DefaultSequenceNameProvider.cs.cs │ │ ├── ISequenceNameProvider.cs │ │ ├── MetaDataProvider.cs │ │ ├── Repository.cs │ │ ├── RepositoryAsync.cs │ │ ├── RepositoryOptions.cs │ │ └── SqlClient │ │ └── SqlSequenceRepositoryAdapter.cs └── Yarn.EFCore.csproj ├── Yarn.GetEventStore ├── EventSourcing │ └── EventStoreProvider │ │ └── EventRepository.cs ├── Properties │ └── AssemblyInfo.cs ├── Yarn.EventStore.csproj └── Yarn.EventStore.csproj.user ├── Yarn.InMemory ├── Data │ └── InMemoryProvider │ │ ├── DataContext.cs │ │ └── Repository.cs ├── Properties │ └── AssemblyInfo.cs ├── Yarn.InMemory.csproj └── Yarn.InMemory.csproj.user ├── Yarn.Lamar ├── IoC │ └── Lamar │ │ └── LamarContainer.cs ├── Properties │ └── AssemblyInfo.cs └── Yarn.Lamar.csproj ├── Yarn.MongoDb ├── Data │ └── MongoDbProvider │ │ ├── DataContext.cs │ │ ├── MongoTransaction.cs │ │ ├── Repository.cs │ │ └── RepositoryOptions.cs ├── Properties │ └── AssemblyInfo.cs ├── Yarn.MongoDb.csproj ├── Yarn.MongoDb.csproj.user └── app.config ├── Yarn.NHibernate ├── Data │ └── NHibernateProvider │ │ ├── DataContext.cs │ │ ├── FullTextRepository.cs │ │ ├── MySqlClient │ │ └── MySqlDataContext.cs │ │ ├── NHibernateExtensions.cs │ │ ├── NHibernateMigration.cs │ │ ├── OracleClient │ │ └── OracleDataContext.cs │ │ ├── PostgresClient │ │ └── PostgresDataContext.cs │ │ ├── Repository.cs │ │ ├── SqlClient │ │ ├── SqlDataContext.cs │ │ └── SqlFullTextProvider.cs │ │ └── SqliteClient │ │ ├── FileDataContext.cs │ │ ├── InMemoryDataContext.cs │ │ └── SqliteDataContext.cs ├── Properties │ └── AssemblyInfo.cs ├── README.txt ├── Yarn.NHibernate.csproj ├── Yarn.NHibernate.csproj.user └── app.config ├── Yarn.Nemo ├── Data │ └── NemoProvider │ │ ├── DataContext.cs │ │ ├── DataContextAsync.cs │ │ ├── DataContextOptions.cs │ │ ├── Repository.cs │ │ ├── RepositoryAsync.cs │ │ └── RepositoryOptions.cs ├── EventSourcing │ └── NemoProvider │ │ ├── EventData.cs │ │ └── EventRepository.cs ├── Properties │ └── AssemblyInfo.cs ├── Yarn.Nemo.csproj └── Yarn.Nemo.csproj.user ├── Yarn.RavenDb ├── Data │ └── RavenDbProvider │ │ ├── DataContext.cs │ │ ├── Repository.cs │ │ └── RepositoryOptions.cs ├── Properties │ └── AssemblyInfo.cs ├── Yarn.RavenDb.csproj └── Yarn.RavenDb.csproj.user ├── Yarn.StructureMap ├── IoC │ └── StructureMap │ │ └── StructureMapContainer.cs ├── Properties │ └── AssemblyInfo.cs ├── Yarn.StructureMap.csproj └── Yarn.StructureMap.csproj.user ├── Yarn.sln ├── Yarn ├── Adapters │ ├── AuditableRepository.cs │ ├── FailoverRepostiory.cs │ ├── InterceptorContext.cs │ ├── InterceptorRepository.cs │ ├── MultiTenantRepository.cs │ ├── RepositoryAdapter.cs │ └── SoftDeleteRepository.cs ├── App.config ├── BulkUpdateOperation.cs ├── CallContext.cs ├── Data │ ├── Configuration │ │ ├── ConnectionStringSettings.cs │ │ ├── ConnectionStringSettingsCollection.cs │ │ └── ConnectionStringSettingsExtensions.cs │ ├── DataAccessProviderTypes.cs │ ├── DbFactory.cs │ └── FullTextProvider.cs ├── EventSourcing │ ├── Aggregate.cs │ ├── ConventionEventRouter.cs │ ├── DefaultAggregateFactory.cs │ ├── IAggregate.cs │ ├── IAggregateFactory.cs │ ├── IEventRepository.cs │ ├── IEventRepositoryAsync.cs │ └── IEventRouter.cs ├── Extensions │ ├── CascadeExtensions.cs │ ├── ExpressionExtensions.cs │ └── RepositoryExtensions.cs ├── IAuditable.cs ├── IBulkOperationsProvider.cs ├── IDataContext.cs ├── IDataContextAsync.cs ├── IEntityKeySelector.cs ├── IEntityLoadService.cs ├── IEntityRepository.cs ├── IEntityRepositoryAsync.cs ├── IFullTextProvider.cs ├── IFullTextRepository.cs ├── ILoadService.cs ├── ILoadServiceProvider.cs ├── IMetaDataProvider.cs ├── IMigrationProvider.cs ├── IMultiResultProvider.cs ├── IQueryResult.cs ├── IRepository.cs ├── IRepositoryAsync.cs ├── ISoftDelete.cs ├── ISpecification.cs ├── ITenant.cs ├── Linq │ └── Expressions │ │ ├── CastRemoverVisitor.cs │ │ ├── Evaluator.cs │ │ ├── LocalCollectionExpander.cs │ │ └── ParameterRebinder.cs ├── ParamList.cs ├── Properties │ └── AssemblyInfo.cs ├── Queries │ ├── ICommand.cs │ ├── ICommandHandler.cs │ ├── IQuery.cs │ ├── IQueryHandler.cs │ ├── QueryBuilder.cs │ └── QueryResult.cs ├── Reflection │ ├── Activator.cs │ ├── Mapper.cs │ ├── PropertyAccessor.cs │ ├── ReflectedType.cs │ └── ReflectionEmitExtensions.cs ├── Sorting.cs ├── Specification │ ├── AndSpecification.cs │ ├── CompositeSpecification.cs │ ├── NotSpecification.cs │ ├── OrSpecification.cs │ ├── PagedSpecification.cs │ └── Specification.cs ├── Yarn.csproj └── Yarn.csproj.user └── YarnTest ├── App.config ├── CustomerRepository.cs ├── GetCustomerByIdQuery.cs ├── ICustomerRepository.cs ├── InsertCustomerCommand.cs ├── LocalCache.cs ├── Migrations └── Configuration.cs ├── Models └── EF │ ├── Category.cs │ ├── Customer.cs │ ├── CustomerDemographic.cs │ ├── Employee.cs │ ├── Model1.Context.cs │ ├── Model1.Context.tt │ ├── Model1.Designer.cs │ ├── Model1.cs │ ├── Model1.edmx │ ├── Model1.edmx.diagram │ ├── Model1.tt │ ├── Order.cs │ ├── Order_Detail.cs │ ├── Product.cs │ ├── Region.cs │ ├── Shipper.cs │ ├── Supplier.cs │ └── Territory.cs ├── NorthwindEntitiesCore.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── YarnTest.csproj ├── YarnTest.csproj.user └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NugetPackAll.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/NugetPackAll.cmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/README.md -------------------------------------------------------------------------------- /Yarn.Cache/Cache/CacheExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Cache/Cache/CacheExtensions.cs -------------------------------------------------------------------------------- /Yarn.Cache/Cache/CachingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Cache/Cache/CachingStrategy.cs -------------------------------------------------------------------------------- /Yarn.Cache/Cache/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Cache/Cache/DataContext.cs -------------------------------------------------------------------------------- /Yarn.Cache/Cache/EntityCachingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Cache/Cache/EntityCachingStrategy.cs -------------------------------------------------------------------------------- /Yarn.Cache/Cache/GenerationalCachingRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Cache/Cache/GenerationalCachingRepository.cs -------------------------------------------------------------------------------- /Yarn.Cache/Cache/GenerationalEntityCachingRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Cache/Cache/GenerationalEntityCachingRepository.cs -------------------------------------------------------------------------------- /Yarn.Cache/Cache/ICacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Cache/Cache/ICacheProvider.cs -------------------------------------------------------------------------------- /Yarn.Cache/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Cache/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Yarn.Cache/Yarn.Cache.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Cache/Yarn.Cache.csproj -------------------------------------------------------------------------------- /Yarn.Cache/Yarn.Cache.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Cache/Yarn.Cache.csproj.user -------------------------------------------------------------------------------- /Yarn.Cassandra/Data/CassandraProvider/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Cassandra/Data/CassandraProvider/DataContext.cs -------------------------------------------------------------------------------- /Yarn.Cassandra/Data/CassandraProvider/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Cassandra/Data/CassandraProvider/Repository.cs -------------------------------------------------------------------------------- /Yarn.Cassandra/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Cassandra/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Yarn.Cassandra/Yarn.Cassandra.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Cassandra/Yarn.Cassandra.csproj -------------------------------------------------------------------------------- /Yarn.EF/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/App.config -------------------------------------------------------------------------------- /Yarn.EF/Data/EntityFrameworkProvider/ColumnMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Data/EntityFrameworkProvider/ColumnMapping.cs -------------------------------------------------------------------------------- /Yarn.EF/Data/EntityFrameworkProvider/ContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Data/EntityFrameworkProvider/ContextExtensions.cs -------------------------------------------------------------------------------- /Yarn.EF/Data/EntityFrameworkProvider/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Data/EntityFrameworkProvider/DataContext.cs -------------------------------------------------------------------------------- /Yarn.EF/Data/EntityFrameworkProvider/DataContextAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Data/EntityFrameworkProvider/DataContextAsync.cs -------------------------------------------------------------------------------- /Yarn.EF/Data/EntityFrameworkProvider/DataContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Data/EntityFrameworkProvider/DataContextExtensions.cs -------------------------------------------------------------------------------- /Yarn.EF/Data/EntityFrameworkProvider/DataContextOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Data/EntityFrameworkProvider/DataContextOptions.cs -------------------------------------------------------------------------------- /Yarn.EF/Data/EntityFrameworkProvider/DefaultSequenceNameProvider.cs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Data/EntityFrameworkProvider/DefaultSequenceNameProvider.cs.cs -------------------------------------------------------------------------------- /Yarn.EF/Data/EntityFrameworkProvider/FullTextRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Data/EntityFrameworkProvider/FullTextRepository.cs -------------------------------------------------------------------------------- /Yarn.EF/Data/EntityFrameworkProvider/ISequenceNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Data/EntityFrameworkProvider/ISequenceNameProvider.cs -------------------------------------------------------------------------------- /Yarn.EF/Data/EntityFrameworkProvider/MetaDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Data/EntityFrameworkProvider/MetaDataProvider.cs -------------------------------------------------------------------------------- /Yarn.EF/Data/EntityFrameworkProvider/Migrations/ScriptGeneratorMigrationInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Data/EntityFrameworkProvider/Migrations/ScriptGeneratorMigrationInitializer.cs -------------------------------------------------------------------------------- /Yarn.EF/Data/EntityFrameworkProvider/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Data/EntityFrameworkProvider/Repository.cs -------------------------------------------------------------------------------- /Yarn.EF/Data/EntityFrameworkProvider/RepositoryAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Data/EntityFrameworkProvider/RepositoryAsync.cs -------------------------------------------------------------------------------- /Yarn.EF/Data/EntityFrameworkProvider/RepositoryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Data/EntityFrameworkProvider/RepositoryOptions.cs -------------------------------------------------------------------------------- /Yarn.EF/Data/EntityFrameworkProvider/SqlClient/SqlFullTextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Data/EntityFrameworkProvider/SqlClient/SqlFullTextProvider.cs -------------------------------------------------------------------------------- /Yarn.EF/Data/EntityFrameworkProvider/SqlClient/SqlSequenceRepositoryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Data/EntityFrameworkProvider/SqlClient/SqlSequenceRepositoryAdapter.cs -------------------------------------------------------------------------------- /Yarn.EF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Yarn.EF/Yarn.EF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Yarn.EF.csproj -------------------------------------------------------------------------------- /Yarn.EF/Yarn.EF.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EF/Yarn.EF.csproj.user -------------------------------------------------------------------------------- /Yarn.EFCore/Data/EntityFrameworkCoreProvider/ColumnMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EFCore/Data/EntityFrameworkCoreProvider/ColumnMapping.cs -------------------------------------------------------------------------------- /Yarn.EFCore/Data/EntityFrameworkCoreProvider/ContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EFCore/Data/EntityFrameworkCoreProvider/ContextExtensions.cs -------------------------------------------------------------------------------- /Yarn.EFCore/Data/EntityFrameworkCoreProvider/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EFCore/Data/EntityFrameworkCoreProvider/DataContext.cs -------------------------------------------------------------------------------- /Yarn.EFCore/Data/EntityFrameworkCoreProvider/DataContextAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EFCore/Data/EntityFrameworkCoreProvider/DataContextAsync.cs -------------------------------------------------------------------------------- /Yarn.EFCore/Data/EntityFrameworkCoreProvider/DataContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EFCore/Data/EntityFrameworkCoreProvider/DataContextExtensions.cs -------------------------------------------------------------------------------- /Yarn.EFCore/Data/EntityFrameworkCoreProvider/DefaultSequenceNameProvider.cs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EFCore/Data/EntityFrameworkCoreProvider/DefaultSequenceNameProvider.cs.cs -------------------------------------------------------------------------------- /Yarn.EFCore/Data/EntityFrameworkCoreProvider/ISequenceNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EFCore/Data/EntityFrameworkCoreProvider/ISequenceNameProvider.cs -------------------------------------------------------------------------------- /Yarn.EFCore/Data/EntityFrameworkCoreProvider/MetaDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EFCore/Data/EntityFrameworkCoreProvider/MetaDataProvider.cs -------------------------------------------------------------------------------- /Yarn.EFCore/Data/EntityFrameworkCoreProvider/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EFCore/Data/EntityFrameworkCoreProvider/Repository.cs -------------------------------------------------------------------------------- /Yarn.EFCore/Data/EntityFrameworkCoreProvider/RepositoryAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EFCore/Data/EntityFrameworkCoreProvider/RepositoryAsync.cs -------------------------------------------------------------------------------- /Yarn.EFCore/Data/EntityFrameworkCoreProvider/RepositoryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EFCore/Data/EntityFrameworkCoreProvider/RepositoryOptions.cs -------------------------------------------------------------------------------- /Yarn.EFCore/Data/EntityFrameworkCoreProvider/SqlClient/SqlSequenceRepositoryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EFCore/Data/EntityFrameworkCoreProvider/SqlClient/SqlSequenceRepositoryAdapter.cs -------------------------------------------------------------------------------- /Yarn.EFCore/Yarn.EFCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.EFCore/Yarn.EFCore.csproj -------------------------------------------------------------------------------- /Yarn.GetEventStore/EventSourcing/EventStoreProvider/EventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.GetEventStore/EventSourcing/EventStoreProvider/EventRepository.cs -------------------------------------------------------------------------------- /Yarn.GetEventStore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.GetEventStore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Yarn.GetEventStore/Yarn.EventStore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.GetEventStore/Yarn.EventStore.csproj -------------------------------------------------------------------------------- /Yarn.GetEventStore/Yarn.EventStore.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.GetEventStore/Yarn.EventStore.csproj.user -------------------------------------------------------------------------------- /Yarn.InMemory/Data/InMemoryProvider/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.InMemory/Data/InMemoryProvider/DataContext.cs -------------------------------------------------------------------------------- /Yarn.InMemory/Data/InMemoryProvider/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.InMemory/Data/InMemoryProvider/Repository.cs -------------------------------------------------------------------------------- /Yarn.InMemory/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.InMemory/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Yarn.InMemory/Yarn.InMemory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.InMemory/Yarn.InMemory.csproj -------------------------------------------------------------------------------- /Yarn.InMemory/Yarn.InMemory.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.InMemory/Yarn.InMemory.csproj.user -------------------------------------------------------------------------------- /Yarn.Lamar/IoC/Lamar/LamarContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Lamar/IoC/Lamar/LamarContainer.cs -------------------------------------------------------------------------------- /Yarn.Lamar/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Lamar/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Yarn.Lamar/Yarn.Lamar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Lamar/Yarn.Lamar.csproj -------------------------------------------------------------------------------- /Yarn.MongoDb/Data/MongoDbProvider/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.MongoDb/Data/MongoDbProvider/DataContext.cs -------------------------------------------------------------------------------- /Yarn.MongoDb/Data/MongoDbProvider/MongoTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.MongoDb/Data/MongoDbProvider/MongoTransaction.cs -------------------------------------------------------------------------------- /Yarn.MongoDb/Data/MongoDbProvider/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.MongoDb/Data/MongoDbProvider/Repository.cs -------------------------------------------------------------------------------- /Yarn.MongoDb/Data/MongoDbProvider/RepositoryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.MongoDb/Data/MongoDbProvider/RepositoryOptions.cs -------------------------------------------------------------------------------- /Yarn.MongoDb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.MongoDb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Yarn.MongoDb/Yarn.MongoDb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.MongoDb/Yarn.MongoDb.csproj -------------------------------------------------------------------------------- /Yarn.MongoDb/Yarn.MongoDb.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.MongoDb/Yarn.MongoDb.csproj.user -------------------------------------------------------------------------------- /Yarn.MongoDb/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.MongoDb/app.config -------------------------------------------------------------------------------- /Yarn.NHibernate/Data/NHibernateProvider/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/Data/NHibernateProvider/DataContext.cs -------------------------------------------------------------------------------- /Yarn.NHibernate/Data/NHibernateProvider/FullTextRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/Data/NHibernateProvider/FullTextRepository.cs -------------------------------------------------------------------------------- /Yarn.NHibernate/Data/NHibernateProvider/MySqlClient/MySqlDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/Data/NHibernateProvider/MySqlClient/MySqlDataContext.cs -------------------------------------------------------------------------------- /Yarn.NHibernate/Data/NHibernateProvider/NHibernateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/Data/NHibernateProvider/NHibernateExtensions.cs -------------------------------------------------------------------------------- /Yarn.NHibernate/Data/NHibernateProvider/NHibernateMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/Data/NHibernateProvider/NHibernateMigration.cs -------------------------------------------------------------------------------- /Yarn.NHibernate/Data/NHibernateProvider/OracleClient/OracleDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/Data/NHibernateProvider/OracleClient/OracleDataContext.cs -------------------------------------------------------------------------------- /Yarn.NHibernate/Data/NHibernateProvider/PostgresClient/PostgresDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/Data/NHibernateProvider/PostgresClient/PostgresDataContext.cs -------------------------------------------------------------------------------- /Yarn.NHibernate/Data/NHibernateProvider/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/Data/NHibernateProvider/Repository.cs -------------------------------------------------------------------------------- /Yarn.NHibernate/Data/NHibernateProvider/SqlClient/SqlDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/Data/NHibernateProvider/SqlClient/SqlDataContext.cs -------------------------------------------------------------------------------- /Yarn.NHibernate/Data/NHibernateProvider/SqlClient/SqlFullTextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/Data/NHibernateProvider/SqlClient/SqlFullTextProvider.cs -------------------------------------------------------------------------------- /Yarn.NHibernate/Data/NHibernateProvider/SqliteClient/FileDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/Data/NHibernateProvider/SqliteClient/FileDataContext.cs -------------------------------------------------------------------------------- /Yarn.NHibernate/Data/NHibernateProvider/SqliteClient/InMemoryDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/Data/NHibernateProvider/SqliteClient/InMemoryDataContext.cs -------------------------------------------------------------------------------- /Yarn.NHibernate/Data/NHibernateProvider/SqliteClient/SqliteDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/Data/NHibernateProvider/SqliteClient/SqliteDataContext.cs -------------------------------------------------------------------------------- /Yarn.NHibernate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Yarn.NHibernate/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/README.txt -------------------------------------------------------------------------------- /Yarn.NHibernate/Yarn.NHibernate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/Yarn.NHibernate.csproj -------------------------------------------------------------------------------- /Yarn.NHibernate/Yarn.NHibernate.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/Yarn.NHibernate.csproj.user -------------------------------------------------------------------------------- /Yarn.NHibernate/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.NHibernate/app.config -------------------------------------------------------------------------------- /Yarn.Nemo/Data/NemoProvider/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Nemo/Data/NemoProvider/DataContext.cs -------------------------------------------------------------------------------- /Yarn.Nemo/Data/NemoProvider/DataContextAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Nemo/Data/NemoProvider/DataContextAsync.cs -------------------------------------------------------------------------------- /Yarn.Nemo/Data/NemoProvider/DataContextOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Nemo/Data/NemoProvider/DataContextOptions.cs -------------------------------------------------------------------------------- /Yarn.Nemo/Data/NemoProvider/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Nemo/Data/NemoProvider/Repository.cs -------------------------------------------------------------------------------- /Yarn.Nemo/Data/NemoProvider/RepositoryAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Nemo/Data/NemoProvider/RepositoryAsync.cs -------------------------------------------------------------------------------- /Yarn.Nemo/Data/NemoProvider/RepositoryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Nemo/Data/NemoProvider/RepositoryOptions.cs -------------------------------------------------------------------------------- /Yarn.Nemo/EventSourcing/NemoProvider/EventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Nemo/EventSourcing/NemoProvider/EventData.cs -------------------------------------------------------------------------------- /Yarn.Nemo/EventSourcing/NemoProvider/EventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Nemo/EventSourcing/NemoProvider/EventRepository.cs -------------------------------------------------------------------------------- /Yarn.Nemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Nemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Yarn.Nemo/Yarn.Nemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Nemo/Yarn.Nemo.csproj -------------------------------------------------------------------------------- /Yarn.Nemo/Yarn.Nemo.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.Nemo/Yarn.Nemo.csproj.user -------------------------------------------------------------------------------- /Yarn.RavenDb/Data/RavenDbProvider/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.RavenDb/Data/RavenDbProvider/DataContext.cs -------------------------------------------------------------------------------- /Yarn.RavenDb/Data/RavenDbProvider/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.RavenDb/Data/RavenDbProvider/Repository.cs -------------------------------------------------------------------------------- /Yarn.RavenDb/Data/RavenDbProvider/RepositoryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.RavenDb/Data/RavenDbProvider/RepositoryOptions.cs -------------------------------------------------------------------------------- /Yarn.RavenDb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.RavenDb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Yarn.RavenDb/Yarn.RavenDb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.RavenDb/Yarn.RavenDb.csproj -------------------------------------------------------------------------------- /Yarn.RavenDb/Yarn.RavenDb.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.RavenDb/Yarn.RavenDb.csproj.user -------------------------------------------------------------------------------- /Yarn.StructureMap/IoC/StructureMap/StructureMapContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.StructureMap/IoC/StructureMap/StructureMapContainer.cs -------------------------------------------------------------------------------- /Yarn.StructureMap/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.StructureMap/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Yarn.StructureMap/Yarn.StructureMap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.StructureMap/Yarn.StructureMap.csproj -------------------------------------------------------------------------------- /Yarn.StructureMap/Yarn.StructureMap.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.StructureMap/Yarn.StructureMap.csproj.user -------------------------------------------------------------------------------- /Yarn.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn.sln -------------------------------------------------------------------------------- /Yarn/Adapters/AuditableRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Adapters/AuditableRepository.cs -------------------------------------------------------------------------------- /Yarn/Adapters/FailoverRepostiory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Adapters/FailoverRepostiory.cs -------------------------------------------------------------------------------- /Yarn/Adapters/InterceptorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Adapters/InterceptorContext.cs -------------------------------------------------------------------------------- /Yarn/Adapters/InterceptorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Adapters/InterceptorRepository.cs -------------------------------------------------------------------------------- /Yarn/Adapters/MultiTenantRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Adapters/MultiTenantRepository.cs -------------------------------------------------------------------------------- /Yarn/Adapters/RepositoryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Adapters/RepositoryAdapter.cs -------------------------------------------------------------------------------- /Yarn/Adapters/SoftDeleteRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Adapters/SoftDeleteRepository.cs -------------------------------------------------------------------------------- /Yarn/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/App.config -------------------------------------------------------------------------------- /Yarn/BulkUpdateOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/BulkUpdateOperation.cs -------------------------------------------------------------------------------- /Yarn/CallContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/CallContext.cs -------------------------------------------------------------------------------- /Yarn/Data/Configuration/ConnectionStringSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Data/Configuration/ConnectionStringSettings.cs -------------------------------------------------------------------------------- /Yarn/Data/Configuration/ConnectionStringSettingsCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Data/Configuration/ConnectionStringSettingsCollection.cs -------------------------------------------------------------------------------- /Yarn/Data/Configuration/ConnectionStringSettingsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Data/Configuration/ConnectionStringSettingsExtensions.cs -------------------------------------------------------------------------------- /Yarn/Data/DataAccessProviderTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Data/DataAccessProviderTypes.cs -------------------------------------------------------------------------------- /Yarn/Data/DbFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Data/DbFactory.cs -------------------------------------------------------------------------------- /Yarn/Data/FullTextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Data/FullTextProvider.cs -------------------------------------------------------------------------------- /Yarn/EventSourcing/Aggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/EventSourcing/Aggregate.cs -------------------------------------------------------------------------------- /Yarn/EventSourcing/ConventionEventRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/EventSourcing/ConventionEventRouter.cs -------------------------------------------------------------------------------- /Yarn/EventSourcing/DefaultAggregateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/EventSourcing/DefaultAggregateFactory.cs -------------------------------------------------------------------------------- /Yarn/EventSourcing/IAggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/EventSourcing/IAggregate.cs -------------------------------------------------------------------------------- /Yarn/EventSourcing/IAggregateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/EventSourcing/IAggregateFactory.cs -------------------------------------------------------------------------------- /Yarn/EventSourcing/IEventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/EventSourcing/IEventRepository.cs -------------------------------------------------------------------------------- /Yarn/EventSourcing/IEventRepositoryAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/EventSourcing/IEventRepositoryAsync.cs -------------------------------------------------------------------------------- /Yarn/EventSourcing/IEventRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/EventSourcing/IEventRouter.cs -------------------------------------------------------------------------------- /Yarn/Extensions/CascadeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Extensions/CascadeExtensions.cs -------------------------------------------------------------------------------- /Yarn/Extensions/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Extensions/ExpressionExtensions.cs -------------------------------------------------------------------------------- /Yarn/Extensions/RepositoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Extensions/RepositoryExtensions.cs -------------------------------------------------------------------------------- /Yarn/IAuditable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/IAuditable.cs -------------------------------------------------------------------------------- /Yarn/IBulkOperationsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/IBulkOperationsProvider.cs -------------------------------------------------------------------------------- /Yarn/IDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/IDataContext.cs -------------------------------------------------------------------------------- /Yarn/IDataContextAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/IDataContextAsync.cs -------------------------------------------------------------------------------- /Yarn/IEntityKeySelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/IEntityKeySelector.cs -------------------------------------------------------------------------------- /Yarn/IEntityLoadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/IEntityLoadService.cs -------------------------------------------------------------------------------- /Yarn/IEntityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/IEntityRepository.cs -------------------------------------------------------------------------------- /Yarn/IEntityRepositoryAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/IEntityRepositoryAsync.cs -------------------------------------------------------------------------------- /Yarn/IFullTextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/IFullTextProvider.cs -------------------------------------------------------------------------------- /Yarn/IFullTextRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/IFullTextRepository.cs -------------------------------------------------------------------------------- /Yarn/ILoadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/ILoadService.cs -------------------------------------------------------------------------------- /Yarn/ILoadServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/ILoadServiceProvider.cs -------------------------------------------------------------------------------- /Yarn/IMetaDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/IMetaDataProvider.cs -------------------------------------------------------------------------------- /Yarn/IMigrationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/IMigrationProvider.cs -------------------------------------------------------------------------------- /Yarn/IMultiResultProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/IMultiResultProvider.cs -------------------------------------------------------------------------------- /Yarn/IQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/IQueryResult.cs -------------------------------------------------------------------------------- /Yarn/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/IRepository.cs -------------------------------------------------------------------------------- /Yarn/IRepositoryAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/IRepositoryAsync.cs -------------------------------------------------------------------------------- /Yarn/ISoftDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/ISoftDelete.cs -------------------------------------------------------------------------------- /Yarn/ISpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/ISpecification.cs -------------------------------------------------------------------------------- /Yarn/ITenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/ITenant.cs -------------------------------------------------------------------------------- /Yarn/Linq/Expressions/CastRemoverVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Linq/Expressions/CastRemoverVisitor.cs -------------------------------------------------------------------------------- /Yarn/Linq/Expressions/Evaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Linq/Expressions/Evaluator.cs -------------------------------------------------------------------------------- /Yarn/Linq/Expressions/LocalCollectionExpander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Linq/Expressions/LocalCollectionExpander.cs -------------------------------------------------------------------------------- /Yarn/Linq/Expressions/ParameterRebinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Linq/Expressions/ParameterRebinder.cs -------------------------------------------------------------------------------- /Yarn/ParamList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/ParamList.cs -------------------------------------------------------------------------------- /Yarn/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Yarn/Queries/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Queries/ICommand.cs -------------------------------------------------------------------------------- /Yarn/Queries/ICommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Queries/ICommandHandler.cs -------------------------------------------------------------------------------- /Yarn/Queries/IQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Queries/IQuery.cs -------------------------------------------------------------------------------- /Yarn/Queries/IQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Queries/IQueryHandler.cs -------------------------------------------------------------------------------- /Yarn/Queries/QueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Queries/QueryBuilder.cs -------------------------------------------------------------------------------- /Yarn/Queries/QueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Queries/QueryResult.cs -------------------------------------------------------------------------------- /Yarn/Reflection/Activator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Reflection/Activator.cs -------------------------------------------------------------------------------- /Yarn/Reflection/Mapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Reflection/Mapper.cs -------------------------------------------------------------------------------- /Yarn/Reflection/PropertyAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Reflection/PropertyAccessor.cs -------------------------------------------------------------------------------- /Yarn/Reflection/ReflectedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Reflection/ReflectedType.cs -------------------------------------------------------------------------------- /Yarn/Reflection/ReflectionEmitExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Reflection/ReflectionEmitExtensions.cs -------------------------------------------------------------------------------- /Yarn/Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Sorting.cs -------------------------------------------------------------------------------- /Yarn/Specification/AndSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Specification/AndSpecification.cs -------------------------------------------------------------------------------- /Yarn/Specification/CompositeSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Specification/CompositeSpecification.cs -------------------------------------------------------------------------------- /Yarn/Specification/NotSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Specification/NotSpecification.cs -------------------------------------------------------------------------------- /Yarn/Specification/OrSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Specification/OrSpecification.cs -------------------------------------------------------------------------------- /Yarn/Specification/PagedSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Specification/PagedSpecification.cs -------------------------------------------------------------------------------- /Yarn/Specification/Specification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Specification/Specification.cs -------------------------------------------------------------------------------- /Yarn/Yarn.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Yarn.csproj -------------------------------------------------------------------------------- /Yarn/Yarn.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/Yarn/Yarn.csproj.user -------------------------------------------------------------------------------- /YarnTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/App.config -------------------------------------------------------------------------------- /YarnTest/CustomerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/CustomerRepository.cs -------------------------------------------------------------------------------- /YarnTest/GetCustomerByIdQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/GetCustomerByIdQuery.cs -------------------------------------------------------------------------------- /YarnTest/ICustomerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/ICustomerRepository.cs -------------------------------------------------------------------------------- /YarnTest/InsertCustomerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/InsertCustomerCommand.cs -------------------------------------------------------------------------------- /YarnTest/LocalCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/LocalCache.cs -------------------------------------------------------------------------------- /YarnTest/Migrations/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Migrations/Configuration.cs -------------------------------------------------------------------------------- /YarnTest/Models/EF/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/Category.cs -------------------------------------------------------------------------------- /YarnTest/Models/EF/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/Customer.cs -------------------------------------------------------------------------------- /YarnTest/Models/EF/CustomerDemographic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/CustomerDemographic.cs -------------------------------------------------------------------------------- /YarnTest/Models/EF/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/Employee.cs -------------------------------------------------------------------------------- /YarnTest/Models/EF/Model1.Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/Model1.Context.cs -------------------------------------------------------------------------------- /YarnTest/Models/EF/Model1.Context.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/Model1.Context.tt -------------------------------------------------------------------------------- /YarnTest/Models/EF/Model1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/Model1.Designer.cs -------------------------------------------------------------------------------- /YarnTest/Models/EF/Model1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /YarnTest/Models/EF/Model1.edmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/Model1.edmx -------------------------------------------------------------------------------- /YarnTest/Models/EF/Model1.edmx.diagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/Model1.edmx.diagram -------------------------------------------------------------------------------- /YarnTest/Models/EF/Model1.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/Model1.tt -------------------------------------------------------------------------------- /YarnTest/Models/EF/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/Order.cs -------------------------------------------------------------------------------- /YarnTest/Models/EF/Order_Detail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/Order_Detail.cs -------------------------------------------------------------------------------- /YarnTest/Models/EF/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/Product.cs -------------------------------------------------------------------------------- /YarnTest/Models/EF/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/Region.cs -------------------------------------------------------------------------------- /YarnTest/Models/EF/Shipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/Shipper.cs -------------------------------------------------------------------------------- /YarnTest/Models/EF/Supplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/Supplier.cs -------------------------------------------------------------------------------- /YarnTest/Models/EF/Territory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Models/EF/Territory.cs -------------------------------------------------------------------------------- /YarnTest/NorthwindEntitiesCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/NorthwindEntitiesCore.cs -------------------------------------------------------------------------------- /YarnTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Program.cs -------------------------------------------------------------------------------- /YarnTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /YarnTest/YarnTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/YarnTest.csproj -------------------------------------------------------------------------------- /YarnTest/YarnTest.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/YarnTest.csproj.user -------------------------------------------------------------------------------- /YarnTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepaside/Yarn/HEAD/YarnTest/packages.config --------------------------------------------------------------------------------