2 using System.Collections.Generic;
6 namespace Deveel.Data.Linq {
9 if (String.IsNullOrEmpty(userName))
10 throw new ArgumentNullException(
"userName");
11 if (String.IsNullOrEmpty(password))
12 throw new ArgumentNullException(
"password");
14 throw new ArgumentNullException(
"model");
20 Metadata =
new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase);
23 public string UserName {
get;
private set; }
25 public string Password {
get;
private set; }
27 public IDictionary<string, object> Metadata {
get;
private set; }
ProviderSettings(string userName, string password, MappingModel model)