Skip to content

Commit 39407cc

Browse files
committed
2 parents 2d2a099 + 84d8ef0 commit 39407cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- allowing to run any nonselect queries
77

88
## Instalation
9-
**This is core package**. Install this package only with specific database package like: Databasic.<DatabaseType>:
9+
**This is core package only**. Install this package only by installing specific database package like: Databasic.<DatabaseType>. Then this package will be installed automaticly with the specific database package.
1010
```nuget
1111
PM> Install-Package Databasic.MsSql
1212
```
@@ -97,9 +97,9 @@ using System.Collections.Generic;
9797
class Dealer: Person {
9898
public int? Id { get; set; }
9999
[Column("Firstname"), Trim]
100-
public new string FirstName { get; set; }
100+
public string FirstName { get; set; }
101101
[Column("Secondname")]
102-
public new string SecondName { get; set; }
102+
public string SecondName { get; set; }
103103
public double? TurnOver { get; set; }
104104

105105
public static Dealer GetById (int id) {

0 commit comments

Comments
 (0)