Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.39 KB | None | 0 0
  1.   var config = new Mock<IConfiguration>();
  2.             var configSection = new Mock<IConfigurationSection>();
  3.             configSection.Setup(a => a.Value).Returns("Server =.; Database = 00000000; Trusted_Connection = True; ");
  4.             config.Setup(a => a.GetSection("ConnectionStrings")).Returns(configSection.Object);
  5.  
  6.             var mb = config.Object.GetSection("ConnectionStrings");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement