Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Many to many relations with ServiceStack.OrmLite

I've been checking ServiceStack's documentation, but I haven't found a way to do many to many relationships with ServiceStack.OrmLite, is it supported? Is there a workaround (without writing raw sql)?

I'd like to have something like this:

Article <- ArticleToTag -> Tag

Thanks!!

like image 361
Juan Arias Avatar asked Sep 21 '12 23:09

Juan Arias


1 Answers

It's not implicitly handled automatically for you behind the scenes if that's what you mean? But as OrmLite is just a thin wrapper around ADO.NET interfaces anything is possible.

In OrmLite, by default every POCO maps 1:1 with a table. So if you wanted the table layout you would create it just as it looks in your database, e.g.

var article = new Article { ... };
var tag = new Tag { ... };
var articleTag = new ArticleTag { ArticleId = article.Id, TagId = tag.Id };

db.Insert(article, tag, articleTag);

Although you might want to take advantage of the built-in blobbing in OrmLite where any complex type just gets serialized and stored in a single text field. So you could do something like:

var article = { new Article { Tags = { "A","B","C" } };

Where Tags is just a List<string> and OrmLite will take care of transparently serializing it in the database field for you.

like image 160
mythz Avatar answered Sep 21 '22 10:09

mythz