Mohammed Alamri
Mohammed Alamri
@stefandevo the same here as I'm planning to move from Dapper. I would suggest to have a look at SmartSql and the way it joins tables to have an idea...
@tb-mtg the problem with SmartSql and SqlSugar is the documentation. They are written in Chinese.. SmartSql has some English documents, but they aren't much. I'm using SqlSugar for now. It...
Here's an example in Sqlsugar repository of table joining in POCO. ```cs var newDynamic = db.Queryable((st, sc, di) => new JoinQueryInfos( JoinType.Left, st.SchoolId == sc.Id, JoinType.Left, st.Name == di.String ))...
@naikus I'm guessing it is because svg-gauge is not a module therefore there's no default exporter. I wish the codebase could be converted to ES6+ so modifications could be easier....
I'm sorry I didn't notice the ts declaration interface `svg-gauge.d.ts` It's because I wanted to change few things, but I didn't clone the whole package (only src/index.js) that's why I...
It's totally ok, thank you so much. This is a huge time-saving tool 👍 I ended up using ServiceStack OrmLite & AutoQuery, which pretty much does the same except that...
@OysterD3 awesome :) Can you also commit update for document
Hi @jorgegorka, any plans to implement this enhancement yet?
@si3nloong you have done great work for this awesome library. I'm sure @jorgegorka is totally open for PRs as he mentioned above. This will be an awesome addition, so thank...
@si3nloong also i want to mention that I've tried to implement this, but I was uncertain about either I make a new method where it is called `guardAsync` or make...