Skip to content

Isidroca/IRepository

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Other simple sql object mapper for .Net

Install

Install-Package IEntityRepository

or visit nuget for other version

Usage

    EntityDataAccess repo = new EntityDataAccess(YouConnectionString);
  repo.CommandType = EntityDataAccess.ICommandType.Text;
  repo.CommandText = @"select * from Person";
  
  var data = await repo.FirstOrDefaultAsync<Person>();

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages