├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SqlToEventHub.sln ├── SqlToEventHub ├── App.config ├── Extensions │ └── IEnumerableExtensions.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SQL │ └── SqlTextQuery.cs ├── SqlToEventHub.csproj └── packages.config ├── WorkerRole ├── ServiceConfiguration.Cloud.cscfg ├── ServiceConfiguration.Local.cscfg ├── ServiceDefinition.csdef └── WorkerRole.ccproj └── event-hubs-pulling-sql-data.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/README.md -------------------------------------------------------------------------------- /SqlToEventHub.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/SqlToEventHub.sln -------------------------------------------------------------------------------- /SqlToEventHub/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/SqlToEventHub/App.config -------------------------------------------------------------------------------- /SqlToEventHub/Extensions/IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/SqlToEventHub/Extensions/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /SqlToEventHub/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/SqlToEventHub/Program.cs -------------------------------------------------------------------------------- /SqlToEventHub/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/SqlToEventHub/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SqlToEventHub/SQL/SqlTextQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/SqlToEventHub/SQL/SqlTextQuery.cs -------------------------------------------------------------------------------- /SqlToEventHub/SqlToEventHub.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/SqlToEventHub/SqlToEventHub.csproj -------------------------------------------------------------------------------- /SqlToEventHub/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/SqlToEventHub/packages.config -------------------------------------------------------------------------------- /WorkerRole/ServiceConfiguration.Cloud.cscfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/WorkerRole/ServiceConfiguration.Cloud.cscfg -------------------------------------------------------------------------------- /WorkerRole/ServiceConfiguration.Local.cscfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/WorkerRole/ServiceConfiguration.Local.cscfg -------------------------------------------------------------------------------- /WorkerRole/ServiceDefinition.csdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/WorkerRole/ServiceDefinition.csdef -------------------------------------------------------------------------------- /WorkerRole/WorkerRole.ccproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/WorkerRole/WorkerRole.ccproj -------------------------------------------------------------------------------- /event-hubs-pulling-sql-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/event-hubs-dotnet-import-from-sql/HEAD/event-hubs-pulling-sql-data.md --------------------------------------------------------------------------------