https://github.com/loresoft/autopoco.extensions
Additional conventions and data sources for AutoPoco.
https://github.com/loresoft/autopoco.extensions
Last synced: 11 months ago
JSON representation
Additional conventions and data sources for AutoPoco.
- Host: GitHub
- URL: https://github.com/loresoft/autopoco.extensions
- Owner: loresoft
- License: apache-2.0
- Created: 2013-08-21T14:24:28.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2018-01-08T17:34:45.000Z (about 8 years ago)
- Last Synced: 2025-05-07T04:48:20.255Z (11 months ago)
- Language: C#
- Size: 684 KB
- Stars: 8
- Watchers: 4
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#AutoPoco.Extensions
Additional conventions and data sources for AutoPoco.
##Download
The AutoPoco Extensions library is available on nuget.org via package name `AutoPoco.Extensions`.
To install AutoPoco.Extensions, run the following command in the Package Manager Console
PM> Install-Package AutoPoco.Extensions
More information about NuGet package avaliable at
https://nuget.org/packages/AutoPoco.Extensions
##Development Builds
Development builds are available on the myget.org feed. A development build is promoted to the main NuGet feed when it's determined to be stable.
In your Package Manager settings add the following package source for development builds:
http://www.myget.org/F/loresoft/
##Usage
var factory = AutoPocoContainer.Configure(x =>
{
x.Conventions(c =>
{
c.UseExtendedConventions();
c.UseDefaultConventions();
});
x.AddFromAssemblyContainingType();
});
var session = factory.CreateSession();
var sampleData = session.Single().Get();