Posts by Anderson Roberto • 21 points
2 posts
-
0
votes1
answer381
viewsA: Separate Context Asp.Net Identity and Application Context
It is possible yes, but not necessary, you can use the project with Identity as a reference in the project that needs information from it. Below is a video of Eduardo Pires explaining the separation…
-
2
votes1
answer172
viewsA: Perform database mapping for Dbset<T>. Sqlquery()
Since T is an entity mapped in the EF, you could do so: public IEnumerable<T> GetMany(Expression<Func<T, bool>> where = null) { IQueryable<T> query = Db.Set<T>(); if…