-
Notifications
You must be signed in to change notification settings - Fork 142
Hello World
Jaxel Rojas edited this page Jan 18, 2018
·
3 revisions
Let's create a very simple example that puts all of the code together and works right out of the box.
-
Create a table and some stored procedures and some test data:
CREATE TABLE Beer ( [ID] int IDENTITY(1,1) PRIMARY KEY , [Type] varchar(128) , [Description] varchar(128)) GO CREATE PROC InsertBeer @type varchar(128), @description varchar(128) AS INSERT INTO Beer ([Type], [Description]) OUTPUT inserted.ID VALUES (@type, @description) GO CREATE PROC GetBeerByType @type varchar(128) AS SELECT * FROM Beer WHERE Type = @type GO -- Add some data EXEC InsertBeer 'IPA', 'Harpoon IPA'; EXEC InsertBeer 'IPA', 'Heady Topper'; EXEC InsertBeer 'Swill', 'Pabst Blue Ribbon';
-
Create a Console Application project called 'Insight_HelloWorld'
-
Add Insight.Database (see Installing-Insight)
-
Paste this code into program.cs:
using System.Collections.Generic; using System.Data.SqlClient; using Insight.Database; namespace Insight_HelloWorld { class Program { static void Main(string[] args) { var repo = new BeerRepository(); IList<Beer> ipas = repo.GetBeersByType("IPA"); var newBeer = new Beer() { Type = "Pale Ale", Description = "Test" }; repo.InsertBeer(newBeer); IList<Beer> paleAles = repo.GetBeersByType("Pale Ale"); } } class BeerRepository { private string _connectionString = Stuff.GetConnectionStr(); // @"server=.." public IList<Beer> GetBeersByType(string type) { var parms = new GetBeersByTypeParams() { Type = type }; var connection = new SqlConnection(_connectionString); IList<Beer> result = connection.Query<Beer>("GetBeerByType", parms); return result; } public void InsertBeer(Beer beer) { var connection = new SqlConnection(_connectionString); var res = connection.Insert("[InsertBeer]", beer); } } internal class GetBeersByTypeParams { internal string Type; } public class Beer { public int ID { get; set; } public string Type { get; set; } public string Description { get; set; } } }
-
Set your connection string in the BeerRepository class
-
That's it! Set a breakpoint at the end of main and run the code
Not sure how it all works? The Connections, Execute, and Getting Results sections explain it all.
Want to do all this with even less code? Read https://github.com/jonwagner/Insight.Database/wiki/Auto-Interface-Implementation
- Home
- About
- Getting Started
- Connections
- Execute
- Getting Results
- Advanced Results & Mapping
- Insert/Update Considerations
- Data Types
- Write Even Less Code
- Performance & Speed
- Other Topics
- Supported Databases
- Working with the Code