Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 86f580d

Browse files
committed
Update README.md
1 parent eafcc5e commit 86f580d

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
Follow [@demisbellot](http://twitter.com/demisbellot) and [@ServiceStack](http://twitter.com/servicestack)
2-
for twitter updates. [Ask questions on StackOverflow](http://stackoverflow.com/search?q=servicestack).
1+
[Join the ServiceStack Google+ group](https://plus.google.com/u/0/communities/112445368900682590445) or
2+
follow [@servicestack](http://twitter.com/servicestack) for updates.
33

4-
ServiceStack.OrmLite is a **convention-based, configuration-free lightweight ORM** that uses standard **POCO classes and Data Annotation attributes** to infer its table schema.
4+
# An Open Source Micro ORM for .NET
55

6-
ServiceStack.OrmLite is an **independent library** and can be used with or without the ServiceStack webservices framework.
6+
_Note: the source code is provided as-is - there is no commercial support available for ServiceStack_
77

88
# Introduction
99

@@ -20,7 +20,7 @@ OrmLite was designed with a focus on the core objectives:
2020
* Expressive power and flexibility - with access to IDbCommand and raw SQL
2121
* Cross platform - supports multiple dbs (currently: Sql Server, Sqlite, MySql, PostgreSQL, Firebird) running on both .NET and Mono platforms.
2222

23-
In OrmLite: **1 Class = 1 Table**. There's no hidden behaviour behind the scenes auto-magically managing hidden references to other tables.
23+
In OrmLite: **1 Class = 1 Table**. There should be no surprising or hidden behaviour.
2424
Any non-scalar properties (i.e. complex types) are text blobbed in a schema-less text field using [.NET's fastest Text Serializer](http://www.servicestack.net/mythz_blog/?p=176).
2525
Effectively this allows you to create a table from any POCO type and it should persist as expected in a DB Table with columns for each of the classes 1st level public properties.
2626

@@ -41,6 +41,8 @@ Effectively this allows you to create a table from any POCO type and it should p
4141

4242
OrmLite.SqlServer is also included in [ServiceStack](https://github.com/ServiceStack/ServiceStack/downloads).
4343

44+
_Note: the binary packages are provided as-is - there is no commercial support available for ServiceStack_
45+
4446
## Download published NuGet binaries without NuGet
4547

4648
For environments that doesn't have NuGet installed (e.g. OSX/Linux) you can still download the published binaries by

0 commit comments

Comments
 (0)