0
我初始化MongoClient這樣約定:MongoDB的:我怎樣才能註冊蒙戈2.0
var client = new MongoClient(MongoConnectionString)
但我怎麼能解釋一下它應該使用我定義的慣例類?
我已經把它們命名BsonClassMap
我初始化MongoClient這樣約定:MongoDB的:我怎樣才能註冊蒙戈2.0
var client = new MongoClient(MongoConnectionString)
但我怎麼能解釋一下它應該使用我定義的慣例類?
我已經把它們命名BsonClassMap
定義其他BsonClassMaps之前類中,你可以配置你的約定所有類
例子:
var conventionPack = new ConventionPack();
conventionPack.Add(new CamelCaseElementNameConvention());
ConventionRegistry.Register("camelCase", conventionPack, t => true);
注意:t => true
裝置所有,但你可以配置爲僅用於命名空間等。
但我如何將它們與MongoClient關聯? Mongo會明白我想要使用這些約定? – Revious
@這很適用於全球。檢查這個問題:http://stackoverflow.com/questions/19521626/mongodb-convention-packs –