ASP.NET Universal Providers - Do they automatically provide SQL Azure Retry Logic? -
regarding asp.net universal providers (system.web.providers), automatically offer retry logic when used sql azure? example in code call:
membership.createuser
if fails because of azure's transient error, library automatically handle situation , retry operation? or should manually handle exception + retry?
the following question implies reply logic built-in, there place confirm this, home page of these providers or source code?
i don't see anywhere retries again after fail. defaultmembershipprovider uses simple entity framework addobject, unless implement custommembershipprovider.
internal static user createuser(membershipentities ctx, guid id, string username, guid appid, bool isanon) { user user = new user(); user.userid = id; user.applicationid = appid; user.lastactivitydate = datetime.utcnow; user.username = username; user.isanonymous = isanon; ctx.users.addobject(user); user user1 = user; return user1; }
Comments
Post a Comment