Skip to content

DividedByCero/simple-db-toolkit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mapping Records

string ConnectionString = "...";

//Instance of ISqlConnection
SqlConnection Conn = new SqlConnection(ConnectionString);

//Querying The Respective Statement
List<Supplier> Suppliers = Mapper.Get<Supplier>(Conn, "SELECT * FROM Suppliers");

//Printing Data.
Suppliers.ForEach(x => {
    Console.WriteLine(x.City);
});

About

Basic Mapper and QueryConstructor for NET. 4.5

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages