You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My question is will these tools work with IdentyCore? How can I use the ElasticScaleContext with the SignInManager?
In the example given below, blogs are being fetched for a specific tenant:
SqlDatabaseUtils.SqlRetryPolicy.ExecuteAction(() =>
{
using (var db = new ElasticScaleContext<int>(sharding.ShardMap, s_tenantId2, connStrBldr.ConnectionString))
{
// Display all Blogs from the database
var query = from b in db.Blogs
orderby b.Name
select b;
Console.WriteLine("All blogs for tenant id {0}:", s_tenantId2);
foreach (var item in query)
{
Console.WriteLine(item.Name);
}
}
});
How will use the SignInManager to check whether the user is authentic or not?
The text was updated successfully, but these errors were encountered:
Hi there
My question is will these tools work with IdentyCore? How can I use the ElasticScaleContext with the SignInManager?
In the example given below, blogs are being fetched for a specific tenant:
How will use the SignInManager to check whether the user is authentic or not?
The text was updated successfully, but these errors were encountered: