0
votes
3answers
79 views
+100
Linq2sql: efficient way to get random elements with weight?
Byt lets say I have an integer weight where i.e. elements with weight 10 has 10 times higher probability to be selected than element with weight 1.
var ws = db.WorkTypes
.Where(e => e.HumanId != …
