Skip to content

Commit

Permalink
Readme updated
Browse files Browse the repository at this point in the history
  • Loading branch information
sheryever committed Apr 4, 2020
1 parent fc0be5a commit 5707fdf
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ All methods are based on stored procedures with its related sotred procedure nam
### SqlEntityRepository Without SP implementation (version 3.1)
- [X] SqlEntityRepository implementation (90%)
- [x] Add `DefaultView` property in EntityAttribute
- [x] Add `KeyAttribute` for decorating primary key of an entity
- [x] Add `PrimaryAttribute` for decorating primary key of an entity
- [x] Add database sequence support using with `PrimaryKeyAttribute`
- [X] `DefaultView` property in EntityAttribute support for default select
- [ ] Replace ISimpleLogger with ILogger
Expand Down
24 changes: 13 additions & 11 deletions Source/SimpleAccess.SqlServer/SimpleAccess.SqlServer.csproj
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="Current">
<PropertyGroup>
<TargetFrameworks>net40;net45;netstandard2.0;netstandard2.1</TargetFrameworks>
<Version>3.1.0-rc</Version>
<Version>3.1.0-rc-2</Version>
<Product>SimpleAccess Sql Server ORM</Product>
<Description>Simple Access ORM provides database access in Ado.net methods naming pattern.
Documentation of using SimpleAccess is available at https://github.com/sheryever/simple-access-orm
</Description>
<Authors>Abu Ali Muhammad Sharjeel</Authors>
<Company>Wayzsoft</Company>
<Copyright>Copyright 2019</Copyright>
<PackageProjectUrl>https://github.com/sheryever/simple-access-orm</PackageProjectUrl>
<PackageProjectUrl>https://simpleaccessorm.com</PackageProjectUrl>
<RepositoryUrl>https://github.com/sheryever/simple-access-orm</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>SimpleAccess, Sql Server, ObjectMapper, ORM, Database Access</PackageTags>
Expand All @@ -20,16 +20,18 @@ Documentation of using SimpleAccess is available at https://github.com/sheryever
</UpgradeBackupLocation>
<OldToolsVersion>2.0</OldToolsVersion>
<ProjectGuid>{D97DEB44-C9BD-4813-AE06-3119CE26214A}</ProjectGuid>
<PackageReleaseNotes>Changes:
- SqlEntityRepository Implemented
- .Net Starndard 2.1 with Microsoft.Data.SqlClient support added
- Repository Performace improvement
- GetPagedList extensions methods added
- SqlRepository is renamed to SqlSpRepository and SqlRepository is marked as Obsolete
- PrimaryKey attribute added to support Sequence object
<PackageReleaseNotes>
Changes:
- SqlEntityRepository Implemented
- .Net Standard 2.0 and .Net Standard 2.1 with Microsoft.Data.SqlClient support added
- Aysnc support for Dotnet full framework 4.5 and .Net Standard 2.0 and later
- Repository Performance improvement
- GetPagedList extensions methods added
- SqlRepository is renamed to SqlSpRepository and SqlRepository is marked as Obsolete
- PrimaryKey attribute added to support Sequence object

Bug fixes
- SqlEntityRepository Get, Find, FindAll methods fixed</PackageReleaseNotes>
Bug fixes
- SqlEntityRepository Get, Find, FindAll methods fixed</PackageReleaseNotes>
<AssemblyVersion>3.1.0.7</AssemblyVersion>
<FileVersion>3.1.0.7</FileVersion>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ All methods are based on stored procedures with its related sotred procedure nam
### SqlEntityRepository Without SP implementation (version 3.1)
- [X] SqlEntityRepository implementation (90%)
- [x] Add `DefaultView` property in EntityAttribute
- [x] Add `KeyAttribute` for decorating primary key of an entity
- [x] Add `PrimaryAttribute` for decorating primary key of an entity
- [x] Add database sequence support using with `PrimaryKeyAttribute`
- [X] `DefaultView` property in EntityAttribute support for default select
- [ ] Replace ISimpleLogger with ILogger
Expand Down

0 comments on commit 5707fdf

Please sign in to comment.